We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc0e482 commit 6b16f3bCopy full SHA for 6b16f3b
src/Text/Pandoc/Writers/Org.hs
@@ -407,6 +407,8 @@ inlineToOrg (Math t str) = do
407
then "\\(" <> literal str <> "\\)"
408
else "\\[" <> literal str <> "\\]"
409
inlineToOrg il@(RawInline f str)
410
+ | elem f ["tex", "latex"] && T.isPrefixOf "\\begin" str =
411
+ return $ cr <> literal str <> cr
412
| isRawFormat f = return $ literal str
413
| otherwise = do
414
report $ InlineNotRendered il
0 commit comments