1*4a476730SSchplurtz le Déboulonnécopy2clipboard Plugin for DokuWiki 2*4a476730SSchplurtz le Déboulonné 3*4a476730SSchplurtz le DéboulonnéAdd button to copy `<code>` and `<file>` content to clipboard. 4*4a476730SSchplurtz le Déboulonné 5*4a476730SSchplurtz le DéboulonnéAll documentation for this plugin can be found at 6*4a476730SSchplurtz le Déboulonnéhttps://github.com/schplurtz/dokuwiki-plugin-copy2clipboard 7*4a476730SSchplurtz le Déboulonné 8*4a476730SSchplurtz le DéboulonnéPlease refer to https://www.dokuwiki.org/plugins for additional info 9*4a476730SSchplurtz le Déboulonnéon how to install plugins in DokuWiki. 10*4a476730SSchplurtz le Déboulonné 11*4a476730SSchplurtz le Déboulonné---- 12*4a476730SSchplurtz le Déboulonné 13*4a476730SSchplurtz le DéboulonnéResources I've used while trying to write this little piece of code. Without 14*4a476730SSchplurtz le Déboulonnéthem, I would not have been able to write this. I voted up the solutions when 15*4a476730SSchplurtz le Déboulonnéappropriate. 16*4a476730SSchplurtz le Déboulonné 17*4a476730SSchplurtz le Déboulonné* https://codetonics.com/javascript/detect-document-ready/ 18*4a476730SSchplurtz le Déboulonné* https://www.dokuwiki.org/devel:jqueryfaq 19*4a476730SSchplurtz le Déboulonné* https://flaviocopes.com/clipboard-api/ Thanks a million. 20*4a476730SSchplurtz le Déboulonné* https://www.w3schools.com/jsref/prop_node_parentelement.asp 21*4a476730SSchplurtz le Déboulonné* https://stackoverflow.com/a/35213639/1831273 innerText vs textContent 22*4a476730SSchplurtz le Déboulonné* https://stackoverflow.com/a/10371757/1831273 innetText or textContent 23*4a476730SSchplurtz le Déboulonné* https://www.w3schools.com/howto/howto_js_add_class.asp 24*4a476730SSchplurtz le Déboulonné* https://stackoverflow.com/a/11701129/1831273 first child of given type 25*4a476730SSchplurtz le Déboulonné* https://css-tricks.com/absolute-relative-fixed-positioining-how-do-they-differ/ a must read 26*4a476730SSchplurtz le Déboulonné* https://css-tricks.com/position-sticky-2/ 27*4a476730SSchplurtz le Déboulonné 28*4a476730SSchplurtz le Déboulonné---- 29*4a476730SSchplurtz le DéboulonnéCopyright (C) Schplurtz le Déboulonné <Schplurtz@laposte.net> 30*4a476730SSchplurtz le Déboulonné 31*4a476730SSchplurtz le DéboulonnéThis program is free software; you can redistribute it and/or modify 32*4a476730SSchplurtz le Déboulonnéit under the terms of the GNU General Public License as published by 33*4a476730SSchplurtz le Déboulonnéthe Free Software Foundation; version 2 of the License 34*4a476730SSchplurtz le Déboulonné 35*4a476730SSchplurtz le DéboulonnéThis program is distributed in the hope that it will be useful, 36*4a476730SSchplurtz le Déboulonnébut WITHOUT ANY WARRANTY; without even the implied warranty of 37*4a476730SSchplurtz le DéboulonnéMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 38*4a476730SSchplurtz le DéboulonnéGNU General Public License for more details. 39*4a476730SSchplurtz le Déboulonné 40*4a476730SSchplurtz le DéboulonnéSee the LICENSE file for details 41