Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Link to escaping issue

...

Code Block
languagejavascript
themeConfluence
somevar = <<
The average of #{a} and #{b} is #{(a + b)/2}
>>;

The value of somevar would be "The average of 10 and 20 is 15."

Info
titleNon-Scalar Values

If you try to insert non-scalar values into a string using the beesting syntax, only their types will be printed. For a non-scalar, use the encode() operator on the value first to turn it into a string.

There's an issue for escaping beesting-like characters.