ac08a887cf
Closes #4281. Previously we allowed "nonindent spaces" before the opening and closing `:::`, but this interfered with list parsing, so now we require the fences to be flush with the margin of the containing block.
18 lines
221 B
Markdown
18 lines
221 B
Markdown
```
|
|
% pandoc -t native
|
|
:::: {.a}
|
|
- ::: {.b}
|
|
text
|
|
:::
|
|
::: {.c}
|
|
text
|
|
:::
|
|
::::
|
|
^D
|
|
[Div ("",["a"],[])
|
|
[BulletList
|
|
[[Div ("",["b"],[])
|
|
[Para [Str "text"]]
|
|
,Div ("",["c"],[])
|
|
[Para [Str "text"]]]]]]
|
|
```
|