カーソル位置にテキストを挿入 (Entering a text at the cursor position)
code:js
(function(){
const text = `ここに挿入
するテキストを書く`; // Write here the text to insert.
document.execCommand('insertText', false, text);
})();
code:txt
ここに挿入する
テキストを書く
というテキストが挿入されます。
タブ文字は\tと書きます