diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/command/5795.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/5795.md b/test/command/5795.md new file mode 100644 index 000000000..0d5154b4d --- /dev/null +++ b/test/command/5795.md @@ -0,0 +1,20 @@ +``` +% 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> +``` |