Socket
Socket
Sign inDemoInstall

highlightjs-cairo

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

highlightjs-cairo

highlight.js syntax definition for Cairo


Version published
Maintainers
1
Created
Source

highlightjs-cairo

NPM Package

Cairo language definition for highlight.js.

Install

npm i highlight.js highlightjs-cairo

Usage

Browser:

<script type="text/javascript" src="/path/to/highlight.min.js"></script>
<script type="text/javascript" src="/path/to/cairo.min.js"></script>
<script type="text/javascript">
    hljs.highlightAll();
</script>

Node (Highlight.js v9):

const hljs = require('highlight.js');
const hljsDefineCairo = require('highlightjs-cairo');

hljsDefineCairo(hljs);
const highlighted = hljs.highlight('cairo', source).value;

Node (Highlight.js v11):

const hljs = require('highlight.js/lib/core');
const hljsDefineCairo = require('highlightjs-cairo');

hljsDefineCairo(hljs);
const highlighted = hljs.highlight(source, {language: 'cairo'}).value;

Keywords

FAQs

Package last updated on 09 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc