diff options
author | Kolen Cheung <christian.kolen@gmail.com> | 2021-12-10 16:18:35 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-12-11 09:42:30 -0800 |
commit | a9a9a2c62a811d0e64062b0be628f55ba541dad7 (patch) | |
tree | 2ff6ebe370be9e0b58d300cec8a29ba3c0ae1b0c /src | |
parent | e88224621de1a8f1be4ea7ad9bf05fe635ddc3cc (diff) | |
download | pandoc-a9a9a2c62a811d0e64062b0be628f55ba541dad7.tar.gz |
fix(IpynbOutput)!: rank always favors output format
Previously, both `fmt == f` case and Image have a rank of 1.
In the end, e.g. from ipynb to html conversion,
if both html and image exists, it actually prefers the image.
This commit changes this, so that fmt == f is always highest rank,
and rank never collides.
This is achieved by keeping fmt == f case having rank 1,
and every other rank increased by 1.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Shared.hs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs index 06fd052b9..eb0b4acbf 100644 --- a/src/Text/Pandoc/Shared.hs +++ b/src/Text/Pandoc/Shared.hs @@ -727,17 +727,17 @@ filterIpynbOutput mode = walk go where rank (RawBlock (Format "html") _) | fmt == Format "html" = 1 :: Int - | fmt == Format "markdown" = 2 - | otherwise = 3 + | fmt == Format "markdown" = 3 + | otherwise = 4 rank (RawBlock (Format "latex") _) | fmt == Format "latex" = 1 - | fmt == Format "markdown" = 2 - | otherwise = 3 + | fmt == Format "markdown" = 3 + | otherwise = 4 rank (RawBlock f _) | fmt == f = 1 - | otherwise = 3 - rank (Para [Image{}]) = 1 - rank _ = 2 + | otherwise = 4 + rank (Para [Image{}]) = 2 + rank _ = 3 removeANSI (CodeBlock attr code) = CodeBlock attr (removeANSIEscapes code) removeANSI x = x |