From c647948ff186411c2dc93ae92d134805726aea54 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 20 Nov 2020 09:17:14 -0800 Subject: `commonmark_x`: replace `auto_identifiers` with `gfm_auto_identifiers`. `commonmark_x` never actually supported `auto_identifiers` (it didn't do anything), because the underlying library implements gfm-style identifiers only. Attempts to add the `autolink_identifiers` extension to `commonmark` will now fail with an error. Closes #6863. --- test/command/4742.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/command/4742.md b/test/command/4742.md index 600880e90..7be9a6077 100644 --- a/test/command/4742.md +++ b/test/command/4742.md @@ -2,7 +2,7 @@ Check that the commonmark reader handles the `ascii_identifiers` extension properly. ``` -% pandoc -f commonmark+auto_identifiers+gfm_auto_identifiers+ascii_identifiers -t native +% pandoc -f commonmark+gfm_auto_identifiers+ascii_identifiers -t native # non ascii ⚠️ räksmörgås ^D [Header 1 ("non-ascii--raksmorgas",[],[]) [Str "non",Space,Str "ascii",Space,Str "\9888\65039",Space,Str "r\228ksm\246rg\229s"]] @@ -13,7 +13,7 @@ formed from \9888 and \65039. The latter is a combining mark, so it survives... ``` -% pandoc -f commonmark+auto_identifiers+gfm_auto_identifiers-ascii_identifiers -t native +% pandoc -f commonmark+gfm_auto_identifiers-ascii_identifiers -t native # non ascii ⚠️ räksmörgås ^D [Header 1 ("non-ascii-\65039-r\228ksm\246rg\229s",[],[]) [Str "non",Space,Str "ascii",Space,Str "\9888\65039",Space,Str "r\228ksm\246rg\229s"]] -- cgit v1.2.3