yzane / vscode-markdown-pdf

Markdown converter for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=yzane.markdown-pdf
Other
1.01k stars 206 forks source link

Add support for jsonc code blocks #281

Open AQS-DTheuke opened 2 years ago

AQS-DTheuke commented 2 years ago

Jsonc is json with comments and is a nice way of adding some inline/in document documentation to code examples. It would be nice if there was at least basic support for it (treating it as json). VSCode detects and highlights it as expected.

JSON

{
    "errorId": "cdd76a4b-da19-c94e-94a0-e8f436e4e2b5"
}

JSONC

{
    "errorId": "243d8f0b-834a-fe45-b947-e6d93bf555f6" // The same as the cause errorId
}

Github seems to treat it like JS.