Thanks for the helpful clarification! However, neither method will
work if there is web2py template code embedded inside the comment,
e.g.:
{{'''
<p>This is my title: {{=response.title}}</p>
'''}}
returns an "EOF while scanning triple-quoted string literal" error.
Is there a method to comment out blocks like these?
-Jim
On Dec 14, 8:35 am, Massimo Di Pierro <[email protected]>
wrote:
> You just need
>
> {{# one line comment }}
>
> or
>
> {{"""
> blah
> blah
> blah
> '''}}
>
> basically the same as python commends but wrapped in {{...}}
>