You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
Currently, ``` is hard-coded into a regular expression pattern as the only delimiters for fenced code blocks. However, according to the CommonMark Spec:
4.5 Fenced code blocks
A code fence is a sequence of at least three consecutive backtick characters (`) or tildes (~). (Tildes and backticks cannot be mixed.) A fenced code block begins with a code fence, indented no more than three spaces.
We should either update the regular expression pattern to support both tildes and backticks, or alternatively provide an option to specify which delimiter to use.
The text was updated successfully, but these errors were encountered:
Currently,
```
is hard-coded into a regular expression pattern as the only delimiters for fenced code blocks. However, according to the CommonMark Spec:We should either update the regular expression pattern to support both tildes and backticks, or alternatively provide an option to specify which delimiter to use.
The text was updated successfully, but these errors were encountered: