vscode-markdown-languageservice
vscode-markdown-languageservice copied to clipboard
“Links” in Markdown Math Wrongly Validated
Does this issue occur when all extensions are disabled?: Yes. (I've tried Developer: Reload With Extensions Disabled)
- VS Code Version: Code 1.68.0 (4af164ea3a06f701fe3e89a2bcbb421d2026b68f, 2022-06-08T11:44:16.822Z)
- OS Version: Windows_NT x64 10.0.19043
Steps to Reproduce:
- Enable
markdown.math.enabled,markdown.experimental.validate.enabled. - Create a markdown file.
- Write
$[0,1]$. - “No link definition found: '0,1'”
Temporary solution: Write $[0, 1]$ instead. (insert a space after the comma)
@mattbierner Same with version number is changelog:
also with license author:
@tjx666 Those cases are expected as they are valid reference link shorthand. You can escape the leading \[ to avoid this
Update: The temporary solution $[0, 1]$ doesn't work now.