I'm creating my first Jekyll site. I try to include a blogging section which I'm copying from an existing non-Jekyll version, converting existing blog pages which were in hardcoded html.
I put my header, navigation, and footer html in _include files. And I merge those in a layout file that also includes {{ content }}
I erase the header, navigation, and footer from the old html file and I only include the body in the .markdown file for the post.
I was expecting the content of the markdown file to be included at the place of the {{ content }}... it does, however Jekyll also seems to include this before the {{ content }} content:
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>
so instead of seeing my own html generated, I see the "code" version of my html. Where does this extra code come from, and how do I get around it?