language-hugo-vscode
language-hugo-vscode copied to clipboard
Fix syntax highlighting of global variables.
Fixes colorization when use of a global variable does not end with a space. (i.e. When a var name does not have a space before the end of the hugo tag.) Ex: "{{$.Site.Params.address}}" No space before the "}}" Note: Using \b may be preferable. Ex: "\s|[^}]*\b"