kotlinx.html
kotlinx.html copied to clipboard
Kotlin DSL for HTML
At least on Windows, [Document.serialize()](https://github.com/Kotlin/kotlinx.html/blob/kotlinx-html-0.6.10/jvm/src/main/kotlin/dom-jvm.kt#L189) writes out documents with mixed line endings: The first line containing `` [always has Unix line endings](https://github.com/Kotlin/kotlinx.html/blob/kotlinx-html-0.6.10/jvm/src/main/kotlin/dom-jvm.kt#L168), but lines written by Java's XML transformer have...
# ❔ I often need to use html functions (`fun FlowContent.foo() {`) without a parent node, I just want to get the html as text. This is what I came...
Generate DSL for MathML (by xsd here: https://www.w3.org/Math/XMLSchema/)
Haven't you thought about functionality like this, guys?   It would be useful in cases if the required attribute is not present in lib ('crossorigin' for example) or in...
I'm working on a Kotlin project which targets the browser (specifically for a Chrome extension). I have a simple snippet of code to append a link to an HTMLDivElement: ```kotlin...
This seems the most relevant place to open, this issue. On the product roadmap do you have any plan to introduce API's for drawing graphs on the canvas?
The `td` tag doesn't support the `colspan` attribute. Workaround: Use `attributes["colspan"]`
Given an existent element, there is a way to insert it as a child of an another element during the DOM build process so it can be referred in follow?...