diff options
author | Eigil Rischel <ayegill@gmail.com> | 2019-09-24 19:39:23 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-24 14:19:45 -0700 |
commit | d42308129ab9df0a0928310fb34cc64b6f23245a (patch) | |
tree | 8a3b93259a237939451bbd41a8ce3e1c3d8f1e2d /src/Text | |
parent | dfb2a0753905a53f69deaf90abe802678f6707f0 (diff) | |
download | pandoc-d42308129ab9df0a0928310fb34cc64b6f23245a.tar.gz |
LaTeX reader: Add 'tikzcd' to list of special environments.
This allows it to be processed by filters, in the same way that
one can do for 'tikzpicture'
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 18bfebabb..a73dfb9a5 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -1893,6 +1893,7 @@ environments = M.fromList , ("minted", minted) , ("obeylines", obeylines) , ("tikzpicture", rawVerbEnv "tikzpicture") + , ("tikzcd", rawVerbEnv "tikzcd") , ("lilypond", rawVerbEnv "lilypond") , ("ly", rawVerbEnv "ly") -- etoolbox |