-
Notifications
You must be signed in to change notification settings - Fork 886
Closed
Description
According to the source, the return-back arrow is only inlined into last p
element of footnoted text.
This leads to a strange cases when footnote ends with blockquote
or header
elements.
This probably could be fixed by some weird CSS like
div.footnote p ~ blockquote:last-of-type
{
display: inline-block;
width: 90%;
}
div.footnote blockquote + p
{
display: inline;
}
div.footnote p ~ h3:last-of-type
{
display: inline;
}
div.footnote h3 + p
{
display: inline;
}
But I suggest just removing the workaround from here
Metadata
Metadata
Assignees
Labels
No labels