From 7df0710094b521c52f7e312751fe90890768f76c Mon Sep 17 00:00:00 2001 From: Albert Krewinkel <albert@zeitkraut.de> Date: Tue, 31 Mar 2020 10:00:49 +0200 Subject: Jira reader: use span with class `underline` for inserted text Jira text which is marked as `+inserted+` is converted into pandoc's default representation for underlined text: a span with class `underline`. Previously, the span was marked with the non-standard class `inserted`. Closes: #6237 --- src/Text/Pandoc/Readers/Jira.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Text') diff --git a/src/Text/Pandoc/Readers/Jira.hs b/src/Text/Pandoc/Readers/Jira.hs index cfe8ba81c..d6fa688e3 100644 --- a/src/Text/Pandoc/Readers/Jira.hs +++ b/src/Text/Pandoc/Readers/Jira.hs @@ -140,7 +140,7 @@ jiraToPandocInlines = \case fromStyle = \case Jira.Emphasis -> emph - Jira.Insert -> spanWith ("", ["inserted"], []) + Jira.Insert -> spanWith ("", ["underline"], []) Jira.Strikeout -> strikeout Jira.Strong -> strong Jira.Subscript -> subscript -- cgit v1.2.3