evo templates can now handle line continuation, using \ at the end of a line.
eg:
p: "This works very simply and consistently\
allowing you to break any string\
or any code\
into separate lines"
and:
h2:"my name is "\
+self.name()
Note that, unlike in python, you cannot break an expression over multiple lines without use of the \ character at the end of each line.