There are two ways to do extended quoting in KRL. One of them is documented under Literals on Kynetx Docs. That looks like this:
var = <<
Some text
>>;
That syntax allows you to embed beestings (e.g., #{var}
) in the text.
However, I've also seen another syntax used, with <| ... |>
instead. What is the difference between these two types of extended quoting mechanisms? What are the limitations/advantages of each?