Rebol & Red language grammar for highlight.js(11.9.0)
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.
<link rel="stylesheet" href="/path/to/styles/default.min.css">
<script src="/path/to/highlight.min.js"></script>
<script src="/path/to/redbol.min.js"></script>
<script>hljs.highlightAll();</script>
<pre><code class="language-rebol">...</code></pre>
Using directly from the UNPKG CDN https://unpkg.com
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/styles/default.min.css">
<script src="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/highlight.min.js"></script>
<!-- and it's easy to individually load additional languages -->
<script src="https://unpkg.com/highlightjs-redbol@2.1.2/dist/redbol.min.js"></script>
<pre><code class="language-rebol">...</code></pre>
<script>hljs.highlightAll();</script>
<link rel="stylesheet" href="https://unpkg.com/@highlightjs/cdn-assets@11.9.0/styles/default.min.css">
<script type="module">
import hljs from 'https://unpkg.com/@highlightjs/cdn-assets@11.9.0/es/highlight.min.js';
// and it's easy to individually load & register additional languages
import hljsRebol from 'https://unpkg.com/highlightjs-redbol@2.1.2/dist/redbol.es.min.js';
hljs.registerLanguage('rebol', hljsRebol);
</script>
<pre><code class="language-rebol">...</code></pre>
<script>hljs.highlightAll();</script>
Highlight.js is released under the CC0 1.0 License. See LICENSE file for details.
Oldes oldes.huhuman@gmail.com
- 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 Red: https://www.red-lang.org
- Learn more about Rebol: http://www.rebol.com or Oldes' fork
- Project pages: https://oldes.github.io/highlightjs-redbol/