Difference between comments with 2 dashes versus 3 in Coldfusion

What is the difference between comments using 3 instead of two dashes?

Example <!--comment here-->vs <!---comment here--->
Also people find this more readable if there is a space between the strokes and the text, for example,
<!-- comment here -->

+5
source share
1 answer

Two traits mean html comment. The content in the html comments is included in the output of the CF pages, i.e. in the HTML source.

Three dashes indicate ColdFusion comment. Everything in the comment is ignored by the ColdFusion compiler and is not included in the html output.

+28
source

All Articles