diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-02-13 00:18:40 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-02-13 00:18:40 -0800 |
commit | 25b7df7c2a1798b5861b7ddc084e74b926299630 (patch) | |
tree | 2250b9186ff82bc090e96433a42d9dabc3dd41a9 /src/Text/Pandoc | |
parent | 1954e894b403a8b0f209e834a619c5893de1d22b (diff) | |
download | pandoc-25b7df7c2a1798b5861b7ddc084e74b926299630.tar.gz |
Remove Ext_fenced_code_attributes from allowed commonmark attributes.
This attribute was listed as allowed, but it didn't actually
do anything. Use `attributes` for code attributes and more.
Closes #7097.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Extensions.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Extensions.hs b/src/Text/Pandoc/Extensions.hs index 7aa32c52c..82eb0e957 100644 --- a/src/Text/Pandoc/Extensions.hs +++ b/src/Text/Pandoc/Extensions.hs @@ -378,7 +378,6 @@ getDefaultExtensions "commonmark_x" = extensionsFromList , Ext_raw_attribute , Ext_implicit_header_references , Ext_attributes - , Ext_fenced_code_attributes ] getDefaultExtensions "org" = extensionsFromList [Ext_citations, @@ -509,7 +508,6 @@ getAllExtensions f = universalExtensions <> getAll f , Ext_raw_attribute , Ext_implicit_header_references , Ext_attributes - , Ext_fenced_code_attributes , Ext_sourcepos ] getAll "commonmark_x" = getAll "commonmark" |