kotlinx.html icon indicating copy to clipboard operation
kotlinx.html copied to clipboard

Kotlin DSL for HTML

Results 110 kotlinx.html issues
Sort by recently updated
recently updated
newest added

`alpine.js` has directives expressed in html attribute like ```html ``` The problem is the `@` prefix on the 2nd attribute. This appears to be the same as https://github.com/Kotlin/kotlinx.html/issues/118 which is...

The tag should have a 'name' attribute: https://www.w3schools.com/tags/att_a_name.asp ``` @HtmlTagMarker fun FlowOrInteractiveOrPhrasingContent.a( href: String? = null, target: String? = null, classes: String? = null, name: String? = null, block: A.()...

I need specify sizes attribute for favicons: ``` ```

I think it's a bug.because I can load it using gradle, but I can't load it using nothing (only inteliij, without gradle/maven), I already imported the jar and it is...

property syntax. Received element is not cached and received directly from the [Document] by calling [Document.getElementById] function on every property access. Throws an exception if element is not found or...

Доброго времени суток! Сразу скажу, что я не программист! При создании тэга tabl {} для jmv, компилятор добавляет в нутрь тэг tbody, его видно при просмотре кода в браузере. Когда...

I'm not able to properly render an SVG tag, because it is not possible to include the xmlns:xlink="http://www.w3.org/1999/xlink" attribute. The library complains that this is not a valid attribute name.

enhancement

Actual workaround : ```kotlin div(.....) { attributes["id"] = "special-div" } ``` Expected api : ```kotlin div(id = "special-div".....) {} ```

design

I wanted to create a PR for the "template" element. Followed the steps here [https://github.com/Kotlin/kotlinx.html/wiki/Development](url) but when I ran the test, it keeps failing because of CompatabilityTest (mismatching declarations.json). I...

In JSDOMBuilder event listeners get added by setEvent. ``` else -> path.last().setEvent(event, value) ``` In case of a vaadin-text-field, that needs a custom 'change' event however this does not work....