I need to create a high-speed document with several lines with the prefix ยจ ## Foo ", but since the command #is a speed directive, it does not work for me.
I want my output to look like this:
#
#
k1, v1
k2, v2
k3, v3
Escaping did not work out as I expected. The following does not work, obviously, since it is #not reset):
#
#
#foreach( $foo in $bar )
$foo.key, $foo.value
#end
Lines ## are not displayed - again, as expected. But my attempts to escape do not work either. Shielding solution one:
\## Foo this
\## Bar that
#foreach( $foo in $bar )
$foo.key, $foo.value
#end
or this, avoiding solution two:
\#\# Foo this
\#\# Bar that
#foreach( $foo in $bar )
$foo.key, $foo.value
#end
or even that ...
# set($msg = "##")
$msg Foo this
$msg Bar that
#foreach( $foo in $bar )
$foo.key, $foo.value
#end
This last one really confused me.
Any ideas?
source
share