summaryrefslogtreecommitdiff
path: root/doc/syntax.texi
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-29 13:34:07 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-29 13:34:19 +0200
commit180da005f4d8cf78121dfe765c47de060006e005 (patch)
tree264b7527fb14c73431498f78194d6e87e2bd92e2 /doc/syntax.texi
parent7b20ee8c8d691c0d79403462411ec66c5ada36c4 (diff)
downloadexchange-180da005f4d8cf78121dfe765c47de060006e005.tar.gz
exchange-180da005f4d8cf78121dfe765c47de060006e005.tar.bz2
exchange-180da005f4d8cf78121dfe765c47de060006e005.zip
move documentation to docs repo
Diffstat (limited to 'doc/syntax.texi')
-rw-r--r--doc/syntax.texi44
1 files changed, 0 insertions, 44 deletions
diff --git a/doc/syntax.texi b/doc/syntax.texi
deleted file mode 100644
index 8aca39d8d..000000000
--- a/doc/syntax.texi
+++ /dev/null
@@ -1,44 +0,0 @@
-@c Syntax highlighting for texinfo's HTML output
-
-@html
-<script src="highlight.pack.js"></script>
-<script>
-var hls = [];
-var syntaxAuto = true;
-addEventListener("DOMContentLoaded", function() {
- // Highlight blocks with fixed language
- for (let x of hls) {
- let next = x[0].nextElementSibling;
- console.log("next", next);
- let blocks = next.querySelectorAll("pre.example");
- for (let i = 0; i < blocks.length; i++) {
- blocks[i].classList.add("language-" + x[1]);
- hljs.highlightBlock(blocks[i]);
- }
- }
- // auto-detect other blocks if not disabled
- if (syntaxAuto) {
- let blocks = document.querySelectorAll("pre.example");
- for (let i = 0; i < blocks.length; i++) {
- hljs.highlightBlock(blocks[i]);
- }
- }
-});
-</script>
-@end html
-
-@macro setsyntax{lang}
-@html
-<script>
-hls.push([document.currentScript, "\lang\"]);
-</script>
-@end html
-@end macro
-
-@macro setsyntaxnoauto{}
-@html
-<script>
-syntaxAuto = false;
-</script>
-@end html
-@end macro