Some KRL statements and expressions use extended quotes. Extended quotes allow multiple line passages that contain the double quote symbol (") to be more easily entered.
There are two types of extended quotes in KRL:

somevar = <<
<p>This is <em>some</em> HTML.<br/>
<a href="http://www.google.com">Search Google</a>
</p>
>>;
Values inside chevrons are treated as strings. The white space is preserved.

somecode = <|
var e = 5;
var f = e + 6;

>;