VS Codeのマークダウンの#のスコープ
code:scope.txt
textmate scopes punctuation.definition.heading.markdown
heading.3.markdown
markup.heading.markdown
text.html.markdown
foreground markup.heading.markdown
{ "fontStyle": "bold" }
つまりこう書く。
code:settings.json
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope":"markup.heading.markdown",
"settings": {
"fontStyle": "bold",
"foreground": "#4d85c3",
}
}
]
}
これで#の部分の色なりフォントスタイルが変わる。