diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2024-02-13 08:16:57 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2024-02-13 08:16:57 -0800 |
| commit | d836da74351d0753d1fe648e2332c056ec99e91b (patch) | |
| tree | 7154756b533528ed96200abb4cdfe11c1a27c6b0 /src/Text | |
| parent | aa00714ba476c8558eb897003fe69009a02b0171 (diff) | |
LaTeX reader: treat `\Cref` like `\cref` (for now).
See #7463.
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Pandoc/Readers/LaTeX/Inline.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX/Inline.hs b/src/Text/Pandoc/Readers/LaTeX/Inline.hs index 353b98624..3fc004524 100644 --- a/src/Text/Pandoc/Readers/LaTeX/Inline.hs +++ b/src/Text/Pandoc/Readers/LaTeX/Inline.hs @@ -338,6 +338,7 @@ refCommands = M.fromList [ ("label", rawInlineOr "label" dolabel) , ("ref", rawInlineOr "ref" $ doref "ref") , ("cref", rawInlineOr "cref" $ doref "ref") -- from cleveref.sty + , ("Cref", rawInlineOr "Cref" $ doref "ref") -- from cleveref.sty , ("vref", rawInlineOr "vref" $ doref "ref+page") -- from varioref.sty , ("eqref", rawInlineOr "eqref" $ doref "eqref") -- from amsmath.sty , ("autoref", rawInlineOr "autoref" $ doref "autoref") -- from hyperref.sty |
