diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-09-04 09:59:48 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-09-04 11:06:01 -0700 |
commit | 481ff8ac44cff104494b89589326b6cb78565cbf (patch) | |
tree | 9adea524f4e441e180cd875827bd7255ef8aeede /src/Text/Pandoc | |
parent | db03e75e279696c29e7b749c79add60b9083d571 (diff) | |
download | pandoc-481ff8ac44cff104494b89589326b6cb78565cbf.tar.gz |
Extensions: put Ext_short_subsuperscripts in alphabetical order.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Extensions.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Extensions.hs b/src/Text/Pandoc/Extensions.hs index 2ef8f64e9..f11e67723 100644 --- a/src/Text/Pandoc/Extensions.hs +++ b/src/Text/Pandoc/Extensions.hs @@ -124,7 +124,6 @@ data Extension = | Ext_mmd_header_identifiers -- ^ Multimarkdown style header identifiers [myid] | Ext_mmd_link_attributes -- ^ MMD style reference link attributes | Ext_mmd_title_block -- ^ Multimarkdown metadata block - | Ext_short_subsuperscripts -- ^ sub-&superscripts w/o closing char (v~i) | Ext_multiline_tables -- ^ Pandoc-style multiline tables | Ext_native_divs -- ^ Use Div blocks for contents of <div> tags | Ext_native_spans -- ^ Use Span inlines for contents of <span> @@ -139,6 +138,7 @@ data Extension = | Ext_raw_markdown -- ^ Parse markdown in ipynb as raw markdown | Ext_rebase_relative_paths -- ^ Rebase relative image and link paths, -- relative to directory of containing file + | Ext_short_subsuperscripts -- ^ sub-&superscripts w/o closing char (v~i) | Ext_shortcut_reference_links -- ^ Shortcut reference links | Ext_simple_tables -- ^ Pandoc-style simple tables | Ext_smart -- ^ "Smart" quotes, apostrophes, ellipses, dashes |