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
Two or more back ticks should not be interpreted as inline code markers / fences. They should be parsed literally as either normal text or inline code, depending on where the single back ticks are.
To Reproduce
Steps to reproduce the behavior:
Create a markdown file that includes a block of two or more back ticks inside inline code.
e.g. Some inline code with ```` ticks present.
Run the parser.
Expected behavior
Three inline text blocks created with styles normal, inline code, normal, respectively.
Text content is "Some ", "inline code with ```` ticks", and " present." respectively.
Additional context
The root cause is the RegEx pattern that finds inline code.
The text was updated successfully, but these errors were encountered:
Back ticks should not be escaped. This is a feature. Code fences here should match exactly, i.e. the close fence must be the same number of back ticks as the open.
Two or more back ticks should not be interpreted as inline code markers / fences. They should be parsed literally as either normal text or inline code, depending on where the single back ticks are.
To Reproduce
Steps to reproduce the behavior:
e.g. Some
inline code with ```` ticks
present.Expected behavior
Three inline text blocks created with styles normal, inline code, normal, respectively.
Text content is "Some ", "inline code with ```` ticks", and " present." respectively.
Additional context
The root cause is the RegEx pattern that finds inline code.
The text was updated successfully, but these errors were encountered: