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

<a> tag is missing 'download' attribute

Open wakingrufus opened this issue 6 years ago • 2 comments
trafficstars

The <a> tag should have a 'rel' attribute: https://www.w3schools.com/TAGS/att_a_rel.asp

wakingrufus avatar Jan 30 '19 15:01 wakingrufus

it seems 'download' attribute is missing too.

Mystery406 avatar May 12 '20 03:05 Mystery406

I figured out how to do this (rel):

                       a(href = "url") {
                            rel = "rel"
                            +"link text"
                        }

download does seem to be missing though

wakingrufus avatar May 12 '20 13:05 wakingrufus