Last active
July 18, 2025 15:05
-
-
Save 3dgoose/a0caf5099960c67564bf3def36b59dd0 to your computer and use it in GitHub Desktop.
highlight.js
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
<!--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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment