I am trying to do some commenting on a .html.tpl file I'm maintaining using
<!-- -->
but it would return syntax error.
How do you put comment on such files?
I am trying to do some commenting on a .html.tpl file I'm maintaining using
<!-- -->
but it would return syntax error.
How do you put comment on such files?
I think that the approved answer is correct only in that specific case. For example, in OVOLogistics PDF Generator for CS-CART all the following comments types don't work.
<!-- INSERT COMMENT HERE -->
{%* INSERT COMMENT HERE *%}
{* INSERT COMMENT HERE *}
As igronus said
It totally depends on template engine you are using. Some of them have no comment feature at all. You should carefully read documentation or browse source code if possible.