pandoc/test/command/5795.md
Florian Beeres bf2eb4f288 Change the implementation of htmlSpanLikeElements and implement <dfn> (#5882)
* Add HTML Reader support for `<dfn>`, parsing this as a Span with class `dfn`.
* Change `htmlSpanLikeElements` implementation to retain classes,
  attributes and inline content.
2019-11-11 08:55:58 -08:00

20 lines
528 B
Markdown

```
% pandoc -f html -t html
<dfn class="dfn" id="foo" title="bax"><span>foo</span></dfn>
^D
<dfn id="foo" class="dfn" title="bax"><span>foo</span></dfn>
```
```
% pandoc -f html -t native
<dfn class="dfn" id="foo" title="bax"><span>foo</span></dfn>
^D
[Plain [Span ("foo",["dfn","dfn"],[("title","bax")]) [Span ("",[],[]) [Str "foo"]]]]
```
```
% pandoc -f native -t html
[Plain [Span ("foo",["dfn","dfn"],[("title","bax")]) [Span ("",[],[]) [Str "foo"]]]]
^D
<dfn id="foo" class="dfn" title="bax"><span>foo</span></dfn>
```