function setClipboard(text) {
    const type = "text/html";
    const blob = new Blob([text], { type });
    const data = [new ClipboardItem({ [type]: blob })];
    navigator.clipboard.write(data).then(
        function () {
            console.log('/* success */');
        },
        function (err) {
            console.log(err);
        }
    );
}