allows annotation in markdown language block headers (matches the behavior in vscode)

This commit is contained in:
Samuel Helms 2019-02-03 10:20:19 -05:00
parent ec16c9c01a
commit b1fe6ca63e

View file

@ -79,7 +79,7 @@ export const language = <ILanguage>{
[/^\s*~~~\s*((?:\w|[\/\-#])+)?\s*$/, { token: 'string', next: '@codeblock' }],
// github style code blocks (with backticks and language)
[/^\s*```\s*((?:\w|[\/\-#])+)\s*$/, { token: 'string', next: '@codeblockgh', nextEmbedded: '$1' }],
[/^\s*```\s*((?:\w|[\/\-#])+).*$/, { token: 'string', next: '@codeblockgh', nextEmbedded: '$1' }],
// github style code blocks (with backticks but no language)
[/^\s*```\s*$/, { token: 'string', next: '@codeblock' }],