highlightjs-moonbit
v1.1.0
Published
MoonBit language support for highlight.js
Maintainers
Readme
highlightjs-moonbit
MoonBit language support for highlight.js.

Usage
Static Website or Simple Import
<script type="text/javascript" src="/path/to/highlight.min.js"></script>
<script type="text/javascript" src="/path/to/moonbit.min.js"></script>
<script type="text/javascript">
hljs.highlightAll();
</script>With Node or Webpack
const hljs = require('highlight.js');
const moonbit = require('highlightjs-moonbit');
hljs.registerLanguage('moonbit', moonbit);Development
npm install
npm run build