+ [2015-09-14T13:02:50Z] le_feni nevermind. fixed it with an extra 'strong'-part in _sass/_base.scss ... seems dirty though.
+ [2015-09-14T21:51:41Z] logicwon it seemed like was a nice release rhythm up until beta8: https://rubygems.org/gems/jekyll/versions. anyone know why the latest gap?
+ [2015-09-14T22:23:03Z] ob is there a way to have a converter plugin output multiple files?
+ [2015-09-14T22:24:27Z] ob so what I'm doing is using the jekyll-asciidoc plugin, but also the asciidoctor-diagram plugin so that you can automatically convert ascii art to images, but now there is not a one-to-one mapping from .adoc -> .html. There are also some .png's that need to be copied.
+ [2015-09-14T22:24:49Z] ob and I'm looking at the plugin's methods to try to figure out if there is a way to also copy the generated .png's

message no. 112073

Posted by Klamber|ext in #jekyll at 2015-09-14T11:51:22Z

Hey! Started using Jekyll and it's awesome so far. But I have question: I want to list all pages that are in a category {{site.categories.CATEGORY}} but it only seems to work on pages that are in _posts folder not in my custom subfolders. Is that it or am i doing something wrong here.
+ [2015-09-15T01:56:58Z] jaybe logicwon, preparing to release 3.0; re: gap
+ [2015-09-15T07:54:16Z] stardiviner @me I want to only show first two posts, but {% for post in site.posts.first(2) %} does not work. Does anybody know how to do this?
+ [2015-09-15T07:55:30Z] oksushi stardiviner: try {% for post in site.posts limit:2 %} ?
+ [2015-09-15T07:56:43Z] stardiviner oksushi: it works, how?
+ [2015-09-15T07:56:54Z] oksushi that’s the syntax