Created
August 7, 2021 13:03
-
-
Save Calinou/61e2db6b5dad205db5e78cb9b63b242c to your computer and use it in GitHub Desktop.
Backup of the syntax highlighting blocks on the Godot Q&A
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script defer src="/qa/highlightjs/highlight.min.js"></script> | |
<script defer src="/qa/highlightjs/highlight.gdscript.min.js"></script> | |
<script> | |
window.addEventListener('DOMContentLoaded', (event) => { | |
document.querySelectorAll('pre code').forEach((block) => { | |
hljs.highlightBlock(block); | |
}); | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="/qa/highlightjs/highlight.obsidian.min.css"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment