If I create a whole HTML document using the `kotli...
# javascript
d
If I create a whole HTML document using the
kotlinx.html
DSL e.g.
Copy code
val document = document.create.html {
        lang = "en"
        head {
            meta {
                charset = "UTF-8"
...
...what is the right way to commit this to display in entirety - is it via
document.rootElement
?