pandoc/test/command/html-trim-definition-list-terms.md

26 lines
309 B
Markdown
Raw Normal View History

```
% pandoc -f html -t native
<dl>
<dt>
foo
bar
</dt>
<dt>
baz
</dt>
<dd>test</dd>
</dl>
^D
[ DefinitionList
[ ( [ Str "foo"
, SoftBreak
, Str "bar"
, LineBreak
, Str "baz"
]
, [ [ Plain [ Str "test" ] ] ]
)
]
]
```