Remove requirement for blank line before list #13169
Unanswered
cliffckerr
asked this question in
Q&A
Replies: 1 comment 5 replies
-
No, it cannot currently as it comes from Pandoc (and many Markdown parser) Note that you are asking something that goes against nearly all (if not all) Markdown linters. Since the syntax with empty will render exactly the same in GitHub and Notebooks, I would suggest to switch to the more robust syntax by adding an empty line before and after list. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Currently, Quarto requires a blank line before a list for it to render properly (from the Markdown basics Quarto docs):
Specifically, this:
currently renders as
instead of
My question is simply: can this limitation be removed? It creates a barrier to switch to Quarto from another system, and seems like it would hopefully be quick to fix and make Quarto consistent with the other widely used Markdown renderers mentioned. I struggle to imagine a scenario in which the user wouldn't want a list in this scenario (a list with no blank line before it), so I don't imagine it would be an issue to change the default behavior.
My particular use case is a website (specifically, software documentation) pulling in README files written for GitHub and Python Jupyter notebooks, neither of which have this requirement for lists.
(See also #6713 and #4650, although neither of those are quite the same as this.)
Beta Was this translation helpful? Give feedback.
All reactions