Question is pretty old, however, this works atm
navigator.clipboard.write(
arrayOf(
ClipboardItem(
recordOf(
"text/html" to Blob(arrayOf(content)),
"text/plain" to Blob(arrayOf(content))
)
)
)
)