highlightjs-4d
v1.0.6
Published
highlight.js syntax definition for 4d
Downloads
1,438
Maintainers
Readme
highlightjs-4d
Description
4d - a language grammar for highlightjs
Static website or simple usage
<script type="text/javascript" src="/path/to/highlight.min.js"></script>
<script type="text/javascript" charset="UTF-8"
src="/path/to/highlightjs-4d/dist/4d.min.js"></script>
<script type="text/javascript">
hljs.initHighlightingOnLoad();
</script>
Using directly from the UNPKG CDN
<script type="text/javascript"
src="https://unpkg.com/[email protected]/dist/4d.min.js"></script>
- More info: https://unpkg.com
With Node or another build system
If you're using Node / Webpack / Rollup / Browserify, etc, simply require the language module, then register it with Highlight.js.
var hljs = require('highlightjs');
var hljs4d = require('highlightjs-4d');
hljs.registerLanguage("4d", hljs4d);
hljs.initHighlightingOnLoad();