Created
June 9, 2025 20:46
-
-
Save pedroinfo/ea432c03901cbc8e69bcc2f909048db2 to your computer and use it in GitHub Desktop.
highlight.css
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="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/vbscript.min.js"></script> | |
<script>hljs.highlightAll();</script> | |
<pre><code class="language-vbscript"> | |
Sub HelloWorld() | |
MsgBox "Hello from VBA!" | |
End Sub | |
</code></pre> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment