Visual Code Syntax support for SWI-Prolog HTML templating language
Simple Template. The support is rather minimal and only highlights the
template directives. It is an injection grammar to HTML (.html
) files.
Simple Template: https://github.com/rla/simple-template
To color the directives, add the following color customization into your
Visual Code settings.json
file:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "text.html.st",
"settings": {
"foreground": "#006666",
"fontStyle": "bold"
}
}
]
}
License: MIT