diff --git a/docs/bundle.js b/docs/bundle.js
new file mode 100644
index 000000000..eb3d70564
--- /dev/null
+++ b/docs/bundle.js
@@ -0,0 +1,10 @@
+var s = document.querySelectorAll("pre");
+s.forEach(element => {
+ var button = document.createElement("button");
+ button.innerHTML = "Copy to clipboard";
+ element.parentElement.appendChild(button);
+
+ button.addEventListener ("click", function() {
+ console.log(element.textContent);
+ });
+});
\ No newline at end of file
diff --git a/docs/index.html b/docs/index.html
index ee07a9add..ecb78bb7a 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -14,6 +14,7 @@
+
+