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
Font size changes unexpectedly because this extensions causes paragraphs to not be wrapped in the right div.
Faulty behaviour
---title: "Test"format:
html:
reference-location: marginself-contained: truefilters:
- abstract-section---# Abstract
This is an abstract
## A title
Here is some text without a footnote
Here is some text with a footnote^[Look, a footnote]
Desired behaviour
---title: "Test"format:
html:
reference-location: marginself-contained: true------
abstract: |
This is an abstract
---## A title
Here is some text without a footnote
Here is some text with a footnote^[Look, a footnote]
The text was updated successfully, but these errors were encountered:
There is a slight misunderstanding in how the filter works: some abstracts do contain headings, so everything up to the next top-level heading is included in the abstract. The result of applying the filter is equivalent to
---
abstract: | # Abstract This is an abstract ## A title Here is some text without a footnote Here is some text with a footnote^[Look, a footnote]
---
Use a horizontal rule if you want the abstract to end before the next level 1 heading:
# Abstract
This is an abstract
* * * * *## A title
Here is some text without a footnote
Here is some text with a footnote^[Look, a footnote]
The font/footnote issue is weird, but unrelated to this filter. I suggest to report it in quarto-cli.
Font size changes unexpectedly because this extensions causes paragraphs to not be wrapped in the right
div
.Faulty behaviour
Desired behaviour
The text was updated successfully, but these errors were encountered: