highlight.js syntax definition for VBA (Visual Basic for Applications
npm install highlightjs-vbaSimply include the Highlight.js library in your webpage or Node app, then load this module.
Simply load the module after loading Highlight.js. You'll use the minified version found in the dist directory. This module is just a CDN build of the language, so it will register itself as the Javascript is loaded.
``html`
src="/path/to/highlightjs-vba/dist/vba.min.js">
`html`
src="https://unpkg.com/highlightjs-vba/dist/vba.min.js">
- More info:
If you're using Node / Webpack / Rollup / Browserify, etc, simply require the language module, then register it with Highlight.js.
`javascript
var hljs = require('highlightjs');
var hljsVba = require('highlightjs-vba');
hljs.registerLanguage("vba", hljsVba);
hljs.initHighlightingOnLoad();
`
Highlight.js is released under the MIT License. See [LICENSE][1] file
for details.
Hugo Leblanc
```
node --stack-size=65500 ./tools/build.js -t cdn
- The official site for the Highlight.js library is
- The Highlight.js GitHub project:
[1]: https://github.com/dullin/highlightjs-vba/blob/master/LICENSE