Questions tagged [jekyll-extensions]

plugins for the Jekyll CMS

Jekyll has a plugin system with hooks that allow you to create custom generated content specific to your site. You can run custom code for your site without having to modify the Jekyll source itself.

Related links

Similar tags:

232 questions
2
votes
2 answers

Point github repo to gh-pages not master

My old website was simple jekyll code kept on master. Now, I revamped website and also started using jekyll-assets plugin. I just came to know that, github pages doesn't support custom plugins, so, I'm in trouble since I've used it at many…
Maulik Suchak
  • 1,028
  • 1
  • 8
  • 23
2
votes
0 answers

jekyll-multiple-languages-plugin not excluding "assets" directory created by jekyll-assets

I have the jekyll-multiple-languages-plugin and jekyll-assets plugins installed in a new Jekyll app. I have the following in my _config.yml: languages: ['en', 'es'] exclude_from_localizations: ['assets'] The assets configuration is all…
robertwbradford
  • 6,181
  • 9
  • 36
  • 61
2
votes
2 answers

Extending Jekyll and Liquid to parse post's content

My blog, powerred by Jekyll, serves out a Atom feed. --- layout: nill rooturi: http://stefan.artspace44.com --- ... {% for post in site.posts %}
Stefan
  • 9,289
  • 7
  • 38
  • 46
2
votes
1 answer

LazyLoad Jekyll images with variables

I'm trying to lazy load my jekyll images that feature a {{ page.path }} variable. Unfortunately the jekyll plugins available crap out when i use a path and instead work with a hardlinked image. I'm using variables in my layout to display images…
master
  • 266
  • 1
  • 14
2
votes
1 answer

Why am I getting an error when installing lunr.js search on Jekyll?

I'm trying to install lunr.js on a jekyll site, and I get this error: Users/tjohnson/projects/resolve/_plugins/jekyll_lunr_js_search.rb:5:in `require': cannot load such file -- v8 (LoadError) from…
Tom Johnson
  • 729
  • 8
  • 17
2
votes
1 answer

Inserting Microdata into Jekyll output?

I've got a recipe site I'm powering with Jekyll, and now I want to add Microdata (itemscope, itemprop, etc.) into the output static page. I've got a couple lists (ingredients, directions, etc.) and I'm not sure how to have Jekyll render these with…
clark
  • 195
  • 1
  • 8
2
votes
1 answer

add prefix to all website content img src

I recently begin to use cdn to speed up images. The origin img src is something like /images/effect.png , I want to add a prefix to all article content image src. div.entry-content p > img { content:attr(src,'http://cdn.example.com'+src) } I…
Kishimo
  • 93
  • 9
2
votes
1 answer

How to show progress when using rake generate?

Is there any way to show the progress when I run rake generate? I have many posts, and when I generate the posts the progress seems to be locked. I'm using Octopress.
viniciusmo
  • 974
  • 2
  • 10
  • 15
2
votes
1 answer

Jekyll thumbnail plugin with Liquid tag

I am trying to use a loop over a Data File with Jekyll. The code I have is as follows:
2
votes
2 answers

add metadata to liquid templates using jekyll plugin

I am new to Jekyll. I have a post with the following yml front matter: --- layout: images-grid title: Grid Sample image: "/imgs/image1.jpg" --- I would like to create .rb plugin that identifies all the posts with "layout = images-grid" and adds the…
Naor
  • 23,465
  • 48
  • 152
  • 268
2
votes
1 answer

Generate file inside _site with Jekyll plugin

I have written a Jekyll plugin, "Tags", which generates a file and returns string of links to that file. Everything is fine, but if I write that file directly into the _site folder, it is removed. If I put that file outside the _site folder, it is…
roxxypoxxy
  • 2,973
  • 1
  • 21
  • 28
1
vote
1 answer

Trailing slash on void elements has no effect and interacts badly with unquoted attribute values. (Fix for Jekyll Seo Tag plugin & HTML5)

If I use the Jekyll SEO tag plugin to add metadata tags for search engines and social networks for improving the indexing of the Website, the plugin generates, in the resulting HTML page, a large number of lines which include void elements such as…
Goemon Code
  • 73
  • 1
  • 10
1
vote
1 answer

Search by 2D position (distance) in Jekyll blog

I have a Jekyll site for which I use the Simple-Jekyll-Search library to provide searching. The site is a catalogue composed of many entries characterized, among other things, by their (x, y) position. This is what my search.md file looks…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
1
vote
1 answer

Implementing a glossary in Jekyll

Am porting a doc site from Madcap Flare to GitHub Pages using Jekyll. One thing I'm wondering about is that is there a way of implementing an automatic glossary similar to…
oceanclub
  • 477
  • 1
  • 4
  • 13