Quarto bullets with parentheses has unexpected behavior #10406
-
DescriptionI was making some bullets with parentheses adjacent to the asterisk and I observed some unexpected behavior such that the parentheses didn't print and the indenting on the bullets adjusted. Is this a function of some markdown type syntax I am not aware of? Perhaps capabilities to make custom bullets/indentation? Is there a way to leverage what is contained in the parentheses as a "bullet" but omit printing of the closed circle? ---
title: "Untitled"
format: html
editor: visual
---
## Resources
* (2024) resource from 2024
* (2022) resource from 2022
* regular resource
I am using quarto version 1.3.450 on Windows 11. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I believe you nested two lists: a list with asterisks and one with numeric (startnum). https://pandoc.org/MANUAL.html#lists You can check that by inspecting the HTML code produced. |
Beta Was this translation helpful? Give feedback.
-
I agree with mcanouil, see the test entry below and the dots behind your numbers.
|
Beta Was this translation helpful? Give feedback.
I believe you nested two lists: a list with asterisks and one with numeric (startnum).
That's Pandoc markdown extended syntax.
https://pandoc.org/MANUAL.html#lists
You can check that by inspecting the HTML code produced.