aboutsummaryrefslogtreecommitdiff
path: root/test/command/6723.md
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2024-02-12 10:01:51 -0800
committerJohn MacFarlane <[email protected]>2024-02-12 10:05:36 -0800
commitbf674e8ddd1ddb78d6300f362a3cd98ac9382b8a (patch)
tree0feae5e512b70fc6a441f699e5d8b1932a2a6e20 /test/command/6723.md
parentbd352e41d6e34aafd5a320562829c419070163ac (diff)
Markdown writer: use different width fences for nested divs.
Outer divs have longer fences. This aids clarity for the reader, making it easier to see where the div ends. It also makes the output compatible with some other implementations, e.g. micromark, which require different-width fences for nesting. Closes #9450.
Diffstat (limited to 'test/command/6723.md')
-rw-r--r--test/command/6723.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command/6723.md b/test/command/6723.md
index 02fdfc032..4f8b78bd1 100644
--- a/test/command/6723.md
+++ b/test/command/6723.md
@@ -22,11 +22,11 @@ Blah.[^1]
# References {#references .unnumbered}
-::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
+:::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
::: {#ref-doe .csl-entry}
Doe, John. "An Article," 2020. <https://doi.org/10.1109/5.771073>.
:::
-:::
+::::
[^1]: John Doe, "An Article," 2020, <https://doi.org/10.1109/5.771073>.
```