Joe
Joe

Reputation: 4514

Jekyll Ignoring markdown headings

I have the following markdown file for a jekyll site:

https://github.com/eQualityTime/TheOpenVoiceFactory/blob/gh-pages/guides.md, which parses correctly in github.

However, something goes wrong when I parse with jekyll process and the headers look like this after I build them (full site is this one):

enter image description here

What's causing this?

Upvotes: 0

Views: 135

Answers (1)

David Jacquel
David Jacquel

Reputation: 52809

In _includes/singlepage.html, you call {{ page.content }}, which is the unprocessed content. Replace it by {{ content }}.

Upvotes: 2

Related Questions