(chore) hljs.highlightAll();

This commit is contained in:
Josh Goebel 2022-02-25 16:14:22 -05:00 committed by GitHub
parent 1b204bd2e1
commit 921ef57449
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ If you're not using a build system and just want to embed this in your webpage:
<script src="/path/to/highlightjs-rpm-specfile/rpm-specfile.js"></script>
<script>
hljs.registerLanguage('rpm-specfile', window.hljsDefineRpmSpecfile);
hljs.initHighlightingOnLoad();
hljs.highlightAll();
</script>
```
@ -26,7 +26,7 @@ var hljs = require('highlightjs');
var hljsDefineRpmSpecfile = require('highlightjs-rpm-specfile');
hljsDefineRpmSpecfile(hljs);
hljs.initHighlightingOnLoad();
hljs.highlightAll();
```
### Advanced