Looking at the source code of https://tale-zola.netlify.app/, checking Math Typesetting, I noticed that the markup nests a wrapper
and the page's own
. This is invalid under HTML rules for some reason, and instead results in Firefox parsing it as an empty
(presumably extending to the first real
in the post), the post contents, then an empty
afterwards.
The best idea I have for fixing this is that you should edit templates/macros.html to remove the outermost
for posts with page.summary (which is HTML).
Alternatively is it possible to synthesize summaries from truncating posts, and properly close HTML tags, so you can remove striptags from the alternative path?
Looking at the source code of https://tale-zola.netlify.app/, checking Math Typesetting, I noticed that the markup nests a wrapper
and the page's own
. This is invalid under HTML rules for some reason, and instead results in Firefox parsing it as an empty
(presumably extending to the first real
in the post), the post contents, then an empty
afterwards.
The best idea I have for fixing this is that you should edit templates/macros.html to remove the outermost
for posts with
page.summary
(which is HTML).Alternatively is it possible to synthesize summaries from truncating posts, and properly close HTML tags, so you can remove
striptags
from the alternative path?