https://github.com/highlightjs/highlightjs-isbl
highlight.js grammar for ISBL
https://github.com/highlightjs/highlightjs-isbl
highlightjs isbl
Last synced: about 2 months ago
JSON representation
highlight.js grammar for ISBL
- Host: GitHub
- URL: https://github.com/highlightjs/highlightjs-isbl
- Owner: highlightjs
- License: mit
- Created: 2022-02-25T18:22:28.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-25T18:32:01.000Z (almost 4 years ago)
- Last Synced: 2025-10-10T14:53:03.453Z (2 months ago)
- Topics: highlightjs, isbl
- Language: JavaScript
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

This grammar has been extracted from Highlight.js and could use a new maintainer. Currently unmaintained.
---
# ISBL - a language grammar for highlight.js



 
## 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.
```html
hljs.highlightAll();
```
### Using directly from the UNPKG CDN
```html
```
- More info:
### With Node or another build system
If you're using Node / Webpack / Rollup / Browserify, etc, simply require the language module, then register it with Highlight.js.
```javascript
var hljs = require('highlight.js');
var grammar = require('highlightjs-isbl');
hljs.registerLanguage("isbl", grammar);
hljs.highlightAll();
```
## License
Highlight.js is released under the MIT License. See [LICENSE][1] file
for details.
### Author
Dmitriy Tarasov
### Maintainer
This grammar has been extracted from Highlight.js and could use a new maintainer. Currently unmaintained.

## Links
- The official site for the Highlight.js library is .
- The Highlight.js GitHub project:
[1]: https://github.com/highlightjs/highlightjs-isbl/blob/main/LICENSE