Is it possbile to generate a boolean attribute for...
# kotlinx-html
k
Is it possbile to generate a boolean attribute for a tag from kotlinx.html. Meaning, is that possible to produce the following code:
Copy code
<label><input type=checkbox checked name=cheese disabled> Cheese</label>
I am aware about
checked="checked"
or
checked=""
options and how to do it with kotlinx.html, but I want the exact syntax as above in the output
c
iirc it is not possible; workaround described work well for us