You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?The text was updated successfully, but these errors were encountered: