summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Options.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-08-21 19:21:51 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-08-21 19:21:51 -0700
commitb985d334064da3df9c340175d75f259cf9f1d4d2 (patch)
treedfbc0c33420027cc77266eb9266ea5b8bf337133 /src/Text/Pandoc/Options.hs
parent7b34dd8dd1cf991807c84fc2900e19869885995d (diff)
Changed nomenclature, delimited -> fenced code blocks.
Diffstat (limited to 'src/Text/Pandoc/Options.hs')
-rw-r--r--src/Text/Pandoc/Options.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs
index 77b134aaa..0cf514b86 100644
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -64,7 +64,7 @@ data Extension =
| Ext_tex_math_single_backslash -- ^ TeX math btw \(..\) \[..\]
| Ext_tex_math_double_backslash -- ^ TeX math btw \\(..\\) \\[..\\]
| Ext_latex_macros -- ^ Parse LaTeX macro definitions (for math only)
- | Ext_delimited_code_blocks -- ^ Parse delimited code blocks
+ | Ext_fenced_code_blocks -- ^ Parse fenced code blocks
| Ext_inline_code_attributes -- ^ Allow attributes on inline code
| Ext_markdown_in_html_blocks -- ^ Interpret as markdown inside HTML blocks
| Ext_markdown_attribute -- ^ Interpret text inside HTML as markdown
@@ -104,7 +104,7 @@ pandocExtensions = Set.fromList
, Ext_raw_html
, Ext_tex_math_dollars
, Ext_latex_macros
- , Ext_delimited_code_blocks
+ , Ext_fenced_code_blocks
, Ext_inline_code_attributes
, Ext_markdown_in_html_blocks
, Ext_escaped_line_breaks