mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-10 19:37:12 +00:00
29fa97ab96
For example, a `p` after a closed `li` will be incorporated into the previous `li`. This mirrors what browsers do with this invalid HTML. Closes #9809.
230 B
230 B
% pandoc -f html -t native
<ul>
<li>Bullet point.</li>
<p>Nested line.</p>
</ul>
^D
[ BulletList
[ [ Para [ Str "Bullet" , Space , Str "point." ]
, Para [ Str "Nested" , Space , Str "line." ]
]
]
]