2.1.2 • Published 2 months ago

highlightjs-redbol v2.1.2

Weekly downloads
3
License
CC0-1.0
Repository
github
Last release
2 months ago

Rebol & Red language grammar for highlight.js(11.9.0)

version license minified size

Usage

Simply include the Highlight.js library in your webpage or Node app, then load this module.

Static website or simple usage

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

Common JS

<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>

ES6 Modules

<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>

License

Highlight.js is released under the CC0 1.0 License. See LICENSE file for details.

Author & Maintainer

Oldes oldes.huhuman@gmail.com

Links

2.1.2

2 months ago

2.1.1

2 months ago

2.1.0

2 months ago

2.0.3

4 months ago

2.0.2

4 months ago

2.0.1

4 months ago

2.0.0

4 months ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago