Expand the md-support to Rmarkdown/Quarto files.
Closed this issue · 2 comments
MBrede commented
The support for RMarkdown/Quarto should be easy to add (at least for comments outside of code chunks), since it uses the same comment-syntax as HTML.
This addition to syntax.json
should do the trick:
{
"language": "RMarkdown",
"markers": [
{
"type": "block",
"pattern": {
"start": "<!--",
"end": "-->"
}
}
]
},
I did also append and complete the markdown-tests locally.
If you are ok with it, I can open a PR.
alstr commented
No problem at all, thanks very much.