Skip to content

Instantly share code, notes, and snippets.

View 3dgoose's full-sized avatar
📢
Honk Honk

Adam Ellouze 3dgoose

📢
Honk Honk
View GitHub Profile
@3dgoose
3dgoose / highlightJS.html
Last active July 18, 2025 15:05
highlight.js
<!--Add this in the body (putting it in the end prevents it from slowing the page loading) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<!-- and it's easy to individually load additional languages -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/languages/go.min.js"></script>
<script>hljs.highlightAll();</script>