This is a fork of the original highlightjs-mcfunction by FireBlast. The syntax definition has been significantly enhanced by converting the comprehensive tmLanguage definition from the MinecraftCommands/syntax-mcfunction repository into Highlight.js format.
- Full support for MCFunction syntax including modern (up to 1.21) features
- Macro support with
$(varname)syntax - Proper string escape sequence handling
- Enhanced comment types: regular (
#), heading (#>), shebang (#!), and block (##) - Accurate UUID, namespace, and selector highlighting
- Resource name validation with namespace:path format
- Coordinate operators (
~,^) and number type suffixes
Since this fork is not published to npm, you need to install it directly from GitHub:
pnpm install github:modrinth/better-highlightjs-mcfunctionOr add it to your package.json:
{
"dependencies": {
"highlightjs-mcfunction": "github:modrinth/better-highlightjs-mcfunction"
}
}Simply 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.
<script type="text/javascript" src="/path/to/highlight.min.js"></script>
<script
type="text/javascript"
charset="UTF-8"
src="/path/to/highlightjs-mcfunction/dist/mcfunction.min.js"
></script>
<script type="text/javascript">
hljs.initHighlightingOnLoad();
</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 hljsMCFunction = require("highlightjs-mcfunction");
hljs.registerLanguage("mcfunction", hljsMCFunction);
hljs.initHighlightingOnLoad();This project is released under the MIT License. See LICENSE file for details.
- The official site for the Highlight.js library is https://highlightjs.org/.
- The Highlight.js GitHub project: https://github.com/highlightjs/highlight.js.
- Learn more about MCFunction: https://minecraft.gamepedia.com/Function_(Java_Edition).