@rdyar It is doing it again on a table I have made in markdown. It adds an open paragraph tag and a close paragraph tag. I have to use kramdown or Jekyll escapes the HTML and changes the < to <div class="cmp-no" />
{::nomarkdown}<div class="cmp-no" />{:/}
That is working as an include in a table
The CSS for the green checkmark or the red X shows up.
With multi like HTML it gets destroyed.
Same as MO1 plus:
<div>
<ul>
<li>Advanced per-mod conflict views with alternatives, sorting, search, etc.</li>
</ul>
</div>
Jekyll should not be confused about that and add a paragraph tag.
Markdown Line that without the issue:
Conflict visualization | {% include cmp-no.html %} | mo2 | mo1 | vor | No visualization of conflicts as there can’t be, just one time popup during mod installation to either overwrite or keep old files. Game archives (BSA) management | Colored checkboxes indicate conflict. Tabs can be selected to see detailed list of conflicts for both loose files and BSA/BA2 files. The mod archive or package name is shown.
Markdown Line that with the issue:
Conflict visualization | {% include cmp-no.html %} | {% include convis_mo2.html %} | mo1 | vor | No visualization of conflicts as there can’t be, just one time popup during mod installation to either overwrite or keep old files. Game archives (BSA) management | Colored checkboxes indicate conflict. Tabs can be selected to see detailed list of conflicts for both loose files and BSA/BA2 files. The mod archive or package name is shown.
I tried using kramdown in case it was going to be like the issue I had with liquid tags but that did not help.
When I don’t use the include with the unordered list then the HTML looks as it should
As shown here the include works fine when not in a table.
Then I thought it is working on a single line so what if I do that.
{::nomarkdown}<p>Same as MO1 plus:</p><ul><li>Advanced per-mod conflict views with alternatives, sorting, search, etc.</li></ul>{:/}
That makes the table less broken, except that after the include Jekyll ignores the rest of the table columns separated by the pipe making a new row instead.