What is the difference between comments using 3 instead of 2 dashes?
Example <!--comment here--> vs <!---comment here--->
Also do people find it more readable if there’s a space between the dashes and the text e.g.
<!-- comment here -->
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Two dashes signify an html comment. Content within html comments are included in the output of CF pages ie viewable in the html source.
Three dashes signify a ColdFusion comment. Anything enclosed within the comments is ignored by the ColdFusion compiler, and is not included in the html output.