WGSL grammar for highlightjs
Simply include the Highlight.js library in your webpage or Node app, then load this module. See the highlight.js usage page for more details.
Load the module (found in the dist
directory):
<script type="text/javascript" src="/path/to/highlight.min.js"></script>
<script type="text/javascript" src="/path/to/highlightjs-wgsl/dist/wgsl.min.js"></script>
<script type="text/javascript">
hljs.highlightAll();
</script>
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 hljsWgsl = require('highlightjs-wgsl');
hljs.registerLanguage("wgsl", hljsWgsl);
hljs.highlightAll();
See the LICENSE file.
Contributions are welcome by pull request.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.