A fork for loongarch64
Highlighting on apostrophes seems to cause more problems than it solves, and it seems unlikely that it will be missed, as it's much more common to use quotes for strings rather than apostrophes. Fixes: https://pagure.io/pagure/issue/5103 |
||
---|---|---|
default.txt | ||
LICENSE | ||
README.md | ||
rpm-specfile.js |
highlight.js
syntax definition for RPM spec files.
For more about highlight.js, see https://highlightjs.org/
For more about RPM, see https://rpm.org/
Usage
Simply include the highlight.js
script package in your webpage or node app, load up this module and apply it to hljs
.
If you're not using a build system and just want to embed this in your webpage:
<script src="/path/to/highlight.pack.js"></script>
<script src="/path/to/highlightjs-rpm-specfile/rpm-specfile.js"></script>
<script>
hljs.registerLanguage('rpm-specfile', window.hljsDefineRpmSpecfile);
hljs.initHighlightingOnLoad();
</script>
If you're using webpack / rollup / browserify / node:
var hljs = require('highlightjs');
var hljsDefineRpmSpecfile = require('highlightjs-rpm-specfile');
hljsDefineRpmSpecfile(hljs);
hljs.initHighlightingOnLoad();
Advanced
This is a pretty simple package, the only thing you might want to do differently is name the language something other than rpm-specfile
. If you want to do this, simply import { definer } from 'highlightjs-rpm-specfile';
and use it like: hljs.registerLanguage('othername', definer);
.