From 71ab4a120db05e055de864efd09d43e901ef8aaa Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Sat, 28 May 2022 05:11:10 -0600 Subject: add support for gdscript for hljs, add wip flappy bird devlog --- static/scripts/hljs_gdscript_class.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 static/scripts/hljs_gdscript_class.js (limited to 'static/scripts/hljs_gdscript_class.js') diff --git a/static/scripts/hljs_gdscript_class.js b/static/scripts/hljs_gdscript_class.js new file mode 100644 index 0000000..3feb099 --- /dev/null +++ b/static/scripts/hljs_gdscript_class.js @@ -0,0 +1,7 @@ +// this is a dirty solution as I wasn't able to add actual gdscript functionality as described +// in the hljs documentation... I'm too dumb I guess +// no longer required, i'm directly using what i found here: https://joshanthony.info/2021/07/01/how-to-add-gdscript-syntax-highlighting-to-your-blog/ +document.addEventListener("DOMContentLoaded", function(event) { + let a = document.getElementsByClassName("language-gdscript"); + [...a].forEach(x => x.className = "hljs gdscript"); +}) \ No newline at end of file -- cgit v1.2.3-54-g00ecf