Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/highlightjs/highlightjs-isbl
highlight.js grammar for ISBL
https://github.com/highlightjs/highlightjs-isbl
highlightjs isbl
Last synced: 6 days 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 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-25T18:32:01.000Z (almost 3 years ago)
- Last Synced: 2024-12-15T16:56:39.301Z (19 days ago)
- Topics: highlightjs, isbl
- Language: JavaScript
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](https://img.shields.io/badge/maintainer-needed-red?style=for-the-badge&logo=github)
This grammar has been extracted from Highlight.js and could use a new maintainer. Currently unmaintained.
---
# ISBL - a language grammar for highlight.js
![version](https://badgen.net/npm/v/highlightjs-isbl)
![license](https://badgen.net/badge/license/MIT/blue)
![compatible with v11.x](https://badgen.net/badge/compatibility/v11.x/cyan)
![install size](https://badgen.net/packagephobia/install/highlightjs-isbl) ![minified size](https://badgen.net/bundlephobia/min/highlightjs-isbl)## 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.
![](https://img.shields.io/badge/maintainer-needed-red?style=for-the-badge&logo=github)
## 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