trunk icon indicating copy to clipboard operation
trunk copied to clipboard

More complex `rel` expression do not work

Open Dav1dde opened this issue 2 years ago • 0 comments

More complex rel expression do currently not work with data-trunk:

<link data-trunk rel="alternate icon" type="image/x-icon" href="favicon.ico">

Error:

error from HTML pipeline

Caused by:
    unknown <link data-trunk .../> attr value `rel="alternate icon"`; please ensure the value is lowercase and is a supported asset type
Error: error from HTML pipeline

Caused by:
    unknown <link data-trunk .../> attr value `rel="alternate icon"`; please ensure the value is lowercase and is a supported asset type

Workaround (without hashing):

<link rel="alternate icon" type="image/x-icon" href="favicon.ico">
<link data-trunk rel="copy-file" href="favicon.ico">

Dav1dde avatar Jan 29 '22 00:01 Dav1dde