+ [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. 112105

Posted by le_feni in #jekyll at 2015-09-14T12:52:04Z

had anybody in here problems with <strong>-tags not properly displayed? chromium displays my jekyll-site properly. running jekyll (2.5.3) and firefox (in my case iceweasel 38.2.1)
+ [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