{"id":18718493,"url":"https://github.com/highlightjs/highlightjs-isbl","last_synced_at":"2025-10-28T07:03:58.695Z","repository":{"id":57264169,"uuid":"463635133","full_name":"highlightjs/highlightjs-isbl","owner":"highlightjs","description":"highlight.js grammar for ISBL","archived":false,"fork":false,"pushed_at":"2022-02-25T18:32:01.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-10T14:53:03.453Z","etag":null,"topics":["highlightjs","isbl"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/highlightjs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-02-25T18:22:28.000Z","updated_at":"2022-02-25T20:38:39.000Z","dependencies_parsed_at":"2022-08-25T02:51:47.357Z","dependency_job_id":null,"html_url":"https://github.com/highlightjs/highlightjs-isbl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/highlightjs/highlightjs-isbl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highlightjs%2Fhighlightjs-isbl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highlightjs%2Fhighlightjs-isbl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highlightjs%2Fhighlightjs-isbl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highlightjs%2Fhighlightjs-isbl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/highlightjs","download_url":"https://codeload.github.com/highlightjs/highlightjs-isbl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/highlightjs%2Fhighlightjs-isbl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281397299,"owners_count":26493908,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-28T02:00:06.022Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["highlightjs","isbl"],"created_at":"2024-11-07T13:21:36.698Z","updated_at":"2025-10-28T07:03:58.661Z","avatar_url":"https://github.com/highlightjs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://img.shields.io/badge/maintainer-needed-red?style=for-the-badge\u0026logo=github)\n\nThis grammar has been extracted from Highlight.js and could use a new maintainer. Currently unmaintained.\n\n---\n\n# ISBL - a language grammar for highlight.js\n\n![version](https://badgen.net/npm/v/highlightjs-isbl)\n![license](https://badgen.net/badge/license/MIT/blue)\n![compatible with v11.x](https://badgen.net/badge/compatibility/v11.x/cyan)\n![install size](https://badgen.net/packagephobia/install/highlightjs-isbl) ![minified size](https://badgen.net/bundlephobia/min/highlightjs-isbl)\n\n## Usage\n\nSimply include the Highlight.js library in your webpage or Node app, then load this module.\n\n### Static website or simple usage\n\nSimply 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.\n\n```html\n\u003cscript type=\"text/javascript\" src=\"/path/to/highlight.min.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\" src=\"/path/to/isbl.min.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\"\u003e\n  hljs.highlightAll();\n\u003c/script\u003e\n```\n\n### Using directly from the UNPKG CDN\n\n```html\n\u003cscript type=\"text/javascript\"\n  src=\"https://unpkg.com/highlightjs-isbl@1.0.0/dist/isbl.min.js\"\u003e\u003c/script\u003e\n```\n\n- More info: \u003chttps://unpkg.com\u003e\n\n### With Node or another build system\n\nIf you're using Node / Webpack / Rollup / Browserify, etc, simply require the language module, then register it with Highlight.js.\n\n```javascript\nvar hljs = require('highlight.js');\nvar grammar = require('highlightjs-isbl');\n\nhljs.registerLanguage(\"isbl\", grammar);\nhljs.highlightAll();\n```\n\n\n## License\n\nHighlight.js is released under the MIT License. See [LICENSE][1] file\nfor details.\n\n### Author\n\nDmitriy Tarasov \u003cdimatar@gmail.com\u003e\n\n### Maintainer\n\nThis grammar has been extracted from Highlight.js and could use a new maintainer. Currently unmaintained.\n\n![](https://img.shields.io/badge/maintainer-needed-red?style=for-the-badge\u0026logo=github)\n\n## Links\n\n- The official site for the Highlight.js library is \u003chttps://highlightjs.org/\u003e.\n- The Highlight.js GitHub project: \u003chttps://github.com/highlightjs/highlight.js\u003e\n\n[1]: https://github.com/highlightjs/highlightjs-isbl/blob/main/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhighlightjs%2Fhighlightjs-isbl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhighlightjs%2Fhighlightjs-isbl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhighlightjs%2Fhighlightjs-isbl/lists"}