diff options
| author | Kevin Broch <86068473+kbroch-rivosinc@users.noreply.github.com> | 2023-07-02 10:24:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-02 10:24:20 -0700 |
| commit | 9e9bdc9c3049064d73714bcc69cf10934c9491e4 (patch) | |
| tree | 14dd8b2ec56795cbfd5f05567d123ac1173c380e /src/Text | |
| parent | 358c08c565f850c10b41e42943f58b20b5f81d85 (diff) | |
Update line-through for asciidoc writer to custom inline style (#8934)
Closes #8933
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Pandoc/Writers/AsciiDoc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/AsciiDoc.hs b/src/Text/Pandoc/Writers/AsciiDoc.hs index e4a34f251..6d96d38b8 100644 --- a/src/Text/Pandoc/Writers/AsciiDoc.hs +++ b/src/Text/Pandoc/Writers/AsciiDoc.hs @@ -517,7 +517,7 @@ inlineToAsciiDoc opts (Strong lst) = do return $ marker <> contents <> marker inlineToAsciiDoc opts (Strikeout lst) = do contents <- inlineListToAsciiDoc opts lst - return $ "[line-through]*" <> contents <> "*" + return $ "[line-through]#" <> contents <> "#" inlineToAsciiDoc opts (Superscript lst) = do contents <- inlineListToAsciiDoc opts lst return $ "^" <> contents <> "^" |
