Syntax Highlighting Bug with Adobe ColdFusion Builder Extension for VS Code
The syntax highlighting is one of the most important features for IDEs because they tell coders if there are problems with the code. I'm currently using version 1.0.701 and noticed an annoying problem whenever the “#” is found on the script. CF Builder assumes that every time it encounters a #, it is part of a variable evaluation, which is commonly used in CF tag attributes or between <cfoutput> tags. But in html, the # is used such as in css settings for colour. As a result, we get problems like these:

In this example above, the # is used properly, and is part of standard html that is not parsed by the CF server. Adding a second # tricks CF Builder into thinking that the # has been escaped:

But this is wrong and will cause problems because the final html code that is sent to the end user's browser will contain two #s. The only way to fix the problem is additional CF code:

But this is an inefficient way of handling things. We shouldn't need to nest html tags within <cfoutput> when it isn't necessary.
I hope you can fix this. CF builder is being a bit overaggressive with the detection of #s.
