diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/Org/DocumentTree.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/DocumentTree.hs b/src/Text/Pandoc/Readers/Org/DocumentTree.hs index 743f6cc0e..3b90c9336 100644 --- a/src/Text/Pandoc/Readers/Org/DocumentTree.hs +++ b/src/Text/Pandoc/Readers/Org/DocumentTree.hs @@ -274,7 +274,7 @@ tagsToInlines tags = -- | Wrap the given inline in a span, marking it as a tag. tagSpan :: Tag -> Inlines -> Inlines -tagSpan t = B.spanWith ("", ["tag"], [("data-tag-name", fromTag t)]) +tagSpan t = B.spanWith ("", ["tag"], [("tag-name", fromTag t)]) |