kotlinx.html
kotlinx.html copied to clipboard
<a> tag is missing 'download' attribute
trafficstars
The <a> tag should have a 'rel' attribute:
https://www.w3schools.com/TAGS/att_a_rel.asp
it seems 'download' attribute is missing too.
I figured out how to do this (rel):
a(href = "url") {
rel = "rel"
+"link text"
}
download does seem to be missing though