contrib/html: support click on code block to copy to clipboard

This commit is contained in:
Christian Hesse 2025-11-17 09:31:36 +01:00
parent 638258000b
commit 903a3f44a0
3 changed files with 7 additions and 0 deletions

4
general/clipboard.js Normal file
View file

@ -0,0 +1,4 @@
/* copy code to clipboard */
function CopyToClipboard(element) {
navigator.clipboard.writeText(element.firstElementChild.innerHTML);
}