Skip to content

Instantly share code, notes, and snippets.

@Calinou
Created August 7, 2021 13:03
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Backup of the syntax highlighting blocks on the Godot Q&A
<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>
<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