The raw content.
Rest
...values: string[]A new RawContent
instance.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#tagged_templates
raw`
<div>
<p>Hello, world!</p>
</div>
`
raw('<div><p>Hello, world!</p></div>')
Generated using TypeDoc
A template tag that marks the given string as raw content by wrapping it in a
RawContent
instance. This interprets the string as raw HTML content and prevents it from being escaped. Can also be called as a regular function.