From b7bc98008996eb6186c8f823d75ec3d6b980958e Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 25 Jul 2022 11:01:11 -0700 Subject: [PATCH] Test for #5795: remove redundant 'dfn' classes --- test/command/5795.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/command/5795.md b/test/command/5795.md index 8271e1232..ea0fcb654 100644 --- a/test/command/5795.md +++ b/test/command/5795.md @@ -1,17 +1,17 @@ ``` % pandoc -f html -t html -foo +foo ^D -foo +foo ``` ``` % pandoc -f html -t native -foo +foo ^D [ Plain [ Span - ( "foo" , [ "dfn" , "dfn" ] , [ ( "title" , "bax" ) ] ) + ( "foo" , [ "dfn" ] , [ ( "title" , "bax" ) ] ) [ Span ( "" , [] , [] ) [ Str "foo" ] ] ] ] @@ -19,7 +19,7 @@ ``` % pandoc -f native -t html -[Plain [Span ("foo",["dfn","dfn"],[("title","bax")]) [Span ("",[],[]) [Str "foo"]]]] +[Plain [Span ("foo",["dfn"],[("title","bax")]) [Span ("",[],[]) [Str "foo"]]]] ^D -foo +foo ```