Moved scripts from .html files to seperate js .files #191

Merged
bema merged 13 commits from bema/ref/spearate_js_from_html into master 2023-05-16 09:59:07 +02:00
2 changed files with 12 additions and 14 deletions
Showing only changes of commit 4ebe38ad38 - Show all commits

View File

@@ -0,0 +1,11 @@
function getProcessor() {
return "libxml";
}
function getVersion() {
return "1.0"
}
function init() {
configurePastingInElement("xmlArea");
}

View File

@@ -7,6 +7,7 @@
<link rel="stylesheet" href="../assets/css/highlight.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
<script src="../assets/scripts/tools/scripts.js"></script>
<script src="../assets/scripts/tools/xmlFormatter.js"></script>
<script src="../assets/scripts/tools/highlight.js"></script>
<script>hljs.highlightAll();</script>
@@ -62,20 +63,6 @@
</div>
<script>
function getProcessor() {
return "libxml";
}
function getVersion() {
return "1.0"
}
function init() {
configurePastingInElement("xmlArea");
}
</script>
</body>
</html>