diff --git a/README.md b/README.md
index 6024cb1..a4284c2 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# wiki-js-customization
+# WikiJS Theme und Client-Side Scripte
-Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das das Wiki
+Dieses Repo enthält das Theming und zusätzlich Client-Side Scripte für das das Wiki.
## Usage
@@ -8,6 +8,8 @@ Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das d
+#### HTML Head Injections
+
```html
@@ -15,6 +17,12 @@ Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das d
```
+#### HTML Body Injections
+
+```html
+
+```
+
## JS Entwicklung
Damit das Custom JA erst ausgeführt wird, wenn das Wiki (Vue.js) die Seite vollständig geladen hat, muss das Custom JS in einem Event registriert werden.
diff --git a/srv/js/template-engine.js b/srv/js/template-engine.js
index 97834c2..6e7448e 100644
--- a/srv/js/template-engine.js
+++ b/srv/js/template-engine.js
@@ -69,7 +69,6 @@ const main = () => {
})
replaceDivTextExceptSpan(codeElement, newCode)
- console.log(newCode)
}
// create input elements
@@ -95,7 +94,6 @@ const main = () => {
inputDiv.appendChild(label)
inputDiv.appendChild(input)
templateContainer.appendChild(inputDiv)
- console.log(variable.name, variable.placeholder)
})
const copyButton = document.createElement('button')
@@ -114,7 +112,6 @@ const main = () => {
// insert the template container before the code block
outerDiv.insertBefore(templateContainer, codeElement.parentElement.parentElement)
-
templateContainer.appendChild(codeBlock)
})
}