Skip to content

v4.1.0

Compare
Choose a tag to compare
@sauerbraten sauerbraten released this 20 Jul 09:22
· 67 commits to master since this release

Allows concatenating string and []byte.

This is useful for using the return value of the built-in json() function, for example:

{{ "{foo:"+json("asd")+"}" }}

This would previously render as {foo:[34 97 115 100 34]} but will now render as {foo:"asd"}).