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

I need to embed a third party angular element. When trying this out using the kotlinx.html DSL I ran into a problem that these angular elements have attribute names which...

The current implementation of HTML `` tags only include the `name` and `content` attributes, which makes it impossible to add OpenGraph tags, which are specified as follows [1]: ``` html...

Is it necessary to have an anonymous class per DSL lambda? ![image](https://user-images.githubusercontent.com/14016119/34425903-093b84ce-ec42-11e7-8b39-7a687f95d6fb.png)

DSL
design

To support password managers, we shall follow these rules: https://www.chromium.org/developers/design-documents/form-styles-that-chromium-understands Unfortunately, kotlinx.html binding only allows setting a Boolean value for "autocomplete": ```kotlin var autoComplete : Boolean get() = attributeBooleanBooleanOnOff.get(this, "autocomplete")...

Apparently kotlinx.html currently doesn't allow JetBrain's react-wrapper to function properly https://github.com/JetBrains/kotlin-wrappers/issues/35

The title says it all 😉 Windows CI (via [AppVeyor](https://www.appveyor.com/), or [now also Travis](https://blog.travis-ci.com/2018-10-11-windows-early-release)) would help to avoid issues like e.g. #104.

Using `+value` in HTLM is currently quite error-prone as it works properly only when `value` has type `String`. If `value` happens to have a numeric type, the code compiles but...

When using the `area` tag DSL (ie: ``` area(shape = AreaShape.rect) { // .. anything } ``` It generates a DOM warning on the browser when compiling with `react-dom` as...

Hey, Kotlin code for the [html5 template](https://www.w3schools.com/TagS/tag_template.asp) is not generated. Greetings,