In Jekyll 1.5.1, my layouts are parsed, but the markdown is ignored.
Is there any way around this?
Here is my layout post.md
---
layout: default
---
<h2>{{ page.title }}</h2>
<p class="meta"></p>
<div class="post">
{{ content }}
</div>
* first
* second
* third
# hi
The title, contents and layout are matched, so I know that Jekyll parses the file.
I expect the first and third to be on the list, and I expect hi to be h1, but they won’t get markdown, while other files such as test.mddo (actually test.md even uses this layout).
source
share