Running into an issue after upgrading to 1.9.1 in which, on some pages, when I have a tags
list in an entries front matter, it ends up rendering the tags at the top of the <body>
.
I can't see a difference between tags that cause an issue, and tags which do not. For example:
Causes Error
tags:
- component
- animation
- events
- actions
No Error
tags:
- draggy
- basket
- game
This is happening regardless of the yaml mode.
Any thoughts? Anyone see this before?
Edit:
This seems to be caused by a partial I am calling that writes out tags and other metadata. It's breaking on some entries, but not others.
Edit 2:
Something very weird is happening here. Any list I have in the front matter of certain entries completely borks rendering for the element in which I'm trying to output the result.
For example, I added the following list to one of the effected files' frontmatter:
things:
- the first thing
- another thing
In the content of that page, I tried to output the list:
<ul>
{{things}}
<li>{{name}}</li>
{{/things}}
</ul>
This is output like this:
<article class="main-article">
- the first thing
- another thing
</article>
There is supposed to be a whole articles worth of content in that <article>
element.