Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
titleEngine Compatibility

Beestings are not yet supported by the new pico engine.

KRL extended quotes support the beesting operator, making them simple templating systems. Inside an extended quote, expression values can be referenced using the #{<expr>} syntax. For example, suppose you've stored 10 and 20 in the variables a and b:

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

...