RosettaCodeData/Task/Comments/ColdFusion/comments-1.cfm

6 lines
508 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
As ColdFusion's grammar is based around HTML syntax, commenting is similar to HTML.
<!--- This is a comment. Nothing in this tag can be seen by the end user.
2013-04-10 16:57:12 -07:00
Note the three-or-greater dashes to open and close the tag. --->
2013-10-27 22:24:23 +00:00
<!-- This is an HTML comment. Any HTML between the opening and closing of the tag will be ignored, but any ColdFusion code will still run.
2013-04-10 16:57:12 -07:00
Note that in the popular FuseBox framework for ColdFusion, the circuit.xml files require that you use this style of comment. -->