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.
RawContent
The raw content.
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>') Copy
raw` <div> <p>Hello, world!</p> </div>`raw('<div><p>Hello, world!</p></div>')
A template tag that marks the given string as raw content by wrapping it in a
RawContentinstance. This interprets the string as raw HTML content and prevents it from being escaped. Can also be called as a regular function.