How to insert text - which I know as "safe" - right onto the elm page.
i.e. what text' is next.
let str = "<h1>Hello World</h1>" in div [] [ text' str ]
In practice, I can get any valid HTML, so I donβt want to create a parser, and I would rather avoid using a port, since the DOM can violate a virtual domain that is different
source share