bf2eb4f288
* Add HTML Reader support for `<dfn>`, parsing this as a Span with class `dfn`. * Change `htmlSpanLikeElements` implementation to retain classes, attributes and inline content.
20 lines
528 B
Markdown
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>
|
|
```
|