Questions tagged [jekyll]

Jekyll is a blog-aware, static site generator written in Ruby. Please refer to https://talk.jekyllrb.com before asking your question.

Jekyll logo

Jekyll is a blog-aware, static site generator written in Ruby.

It takes a template directory (representing the raw form of a website), runs it through Textile or Markdown and Liquid converters, and spits out a complete, static website suitable for serving with Apache, the built-in WEBrick server or the web server of your choice. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog with GitHub.

Jekyll also offers a way to customize it via plugins written in Ruby.


Notable site using it:

Resources:


Latest Release:

Gem Version

6232 questions
2
votes
0 answers

Attach pdf view in Jekyll pages

I have a use case , where I want to view pdf files in Jekyll pages without downloading it. For Example : Markdown is like Heading 1 Heading 2 pdf view Heading 3 pdf view Can you suggest anything like iframe etc.. to embed in Jekyll pages I…
AHL
  • 493
  • 5
  • 8
2
votes
1 answer

How does Jekyll know what layout it should use for each specific URL?

When I request a specific URL on a website ran on Jekyll, eg. www.mysite.com/blog.html how does Jekyll know what layout it should render to display blog.html? I used to work with Django, where there was urls.py file that kept pairs of URL and…
Julia K Szopa
  • 151
  • 1
  • 6
2
votes
2 answers

Github pages Build Error: The jekyll-theme-hydejack theme could not be found

I am trying to publish a github blog page, which I was able to publish to github.io page without an issue 2 months ago, but it throws an error now. I can still successfully build a jekyll theme locally. When I push it to github, however, it throws a…
user9532692
  • 584
  • 7
  • 28
2
votes
1 answer

YAML on Textile Parsing

I think this is my first question here. I've been lurking around on StackOverflow for quite some time now it has been a great resource to me. I'm writing a small static site generator that works like jekyll (The end-user writes his page content in…
jpanganiban
  • 1,089
  • 10
  • 9
2
votes
1 answer

Put two Highcharts Charts Side by Side on a Jekyll Blog (beautiful-jekyll)

I am currently working with highcharts in Jekyll and have seen documentation on how to put two 'divs' together, but I was unsure on how I could do this in Jekyll using CSS. My current jsfiddle is here where the two charts are stacked. …
sixsidedie
  • 45
  • 5
2
votes
0 answers

How to add the custom title to Tab using Jekyll plugin?

We are converting the md (markdown) files in to html files using Jekyll and hosting the html files in site. In our MD file we are mentioning the tabs like below. {% tabs %} {% highlight C# %} int value = 10; {% endhighlight %} {% endtabs %} Here…
naveen
  • 89
  • 4
2
votes
4 answers

Have a div filled with elements appear when hovering a link, code not working

I seem to have trouble with what should be a simple thing. I can't figure out why what I did isn't working, I want to have an element appear when a link is hovered, but nothing happens when it's done. It only works when I ask the element to appear…
2
votes
2 answers

mermaid not rendered in Jekyll page

I try to setup mermaid in a Jekyll page. In Jekyll I am using the theme Just the Docs. Basically I followed this post to add mermaid in my page template. And it results in: Diagram I used is:
graph TD A[Client]…
Greenfly77
  • 165
  • 2
  • 8
2
votes
0 answers

Remove code blocks from read estimation in Jekyll Liquid

In my blog based on Jekyll I included a read estimation similar to the one on Medium. However I don't want it to include code blocks which I use a lot in the article. The snippet looks like this:
mostsignificant
  • 312
  • 1
  • 8
2
votes
1 answer

How to use footnotes in markdown inside html?

I am trying to use footnotes in Markdown, but when I put it inside HTML (
) the footnotes won't parse. Here is the minimal example of the code: a[^1]
b[^2]
[^1]: I am a footnote [^2]: I want to be a footnote too. And it's parsed…
grg
  • 85
  • 7
2
votes
1 answer

Adding custom sidebar to Github Page (using Jekyll minimal theme)

I am using the Jekyll minimal theme to design a website that I am hosting from a Github repo via Github Pages. I would like to add a sidebar to allow me to navigate to different pages. Although the documentation seems straightforward, I have not…
GaiusBaltar
  • 31
  • 1
  • 7
2
votes
1 answer

Jekyll crash on generation: segmentation fault

when I run bundle exec jekyll serve --trace --port 4000 in my jekyll project directory as usual, I get this: First I get some information about PATHs: /usr/lib/ruby/3.0.0/pathname.rb:20: warning: already initialized constant…
Jan Černý
  • 1,268
  • 2
  • 17
  • 31
2
votes
1 answer

Can I make my github pages repository private and still have the web link itself be public and indexed by search engines?

I have a github page, username.github.io. I'd like to make the webpage itself public so everyone can see it and it will be picked up by Google search, but I'd like to have the repository where I make the changes itself private…
user6496380
  • 43
  • 1
  • 7
2
votes
0 answers

Github pages ignores Jekyll's baseurl for custom subdomain

My main Github repo uses my custom domain: domain.com. Another Github repo uses my custom subdomain: sub.domain.com. However, I actually want to serve it to sub.domain.com/subdirectory instead. I figured I would add baseurl:/subdirectory to my…
Ephebopus
  • 25
  • 2
  • 4
2
votes
1 answer

Sorting Jekyll tags by number of posts

The code which displays tags for the Jekyll theme I am using is given below. It currently shows tags in alphabetical order. What should I change to sort via post count? I saw a similar question but the code they used was very different from what is…
1 2 3
99
100