Merge pull request #3415 from apparentlymart/heredoc-docs

Document that heredoc syntax is supported
This commit is contained in:
Martin Atkins 2015-10-10 17:32:27 -07:00
commit fd0174b031

View File

@ -54,6 +54,11 @@ Basic bullet point reference:
is
[documented here](/docs/configuration/interpolation.html).
* Multiline strings can use shell-style "here doc" syntax, with
the string starting with a marker like `<<EOT` and then the
string ending with `EOT` on a line of its own. The lines of
the string and the end marker must *not* be indented.
* Numbers are assumed to be base 10. If you prefix a number with
`0x`, it is treated as a hexadecimal number.