Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jade-highlighter

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jade-highlighter

A robust syntax highlighter for jade in node.js

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
494
decreased by-22.08%
Maintainers
1
Weekly downloads
 
Created
Source

Jade Tools

This repository houses the source code that generates three different tools to help you program in jade:

  • jade-brackets: the official jade plugin for the brackets editor
  • jade-highlight: a syntax highlighter for highlighting jade in node.js
  • jade-code-mirror: a browserifyable npm library that adds jade support to code-mirror

There's also the raw CodeMirror mode in /lib/mode.js

Build Status Dependency Status

jade-brackets

This is the official jade plugin for Brackets. Brackets is the recommended editor for jade.

jade-highlight

A simple syntax highlighter for jade.

NPM version

Installation

npm install jade-highlight

Usage

var jade = require('jade-highlight');

// Optionally register additional languages to highlight filters etc. (by default html, js, css and markdown are supported)
jade.loadMode('java');

// Get the html code produced from highlighting using jade
var html = jade('string of jade code here', {options});

jade-code-mirror

A code mirror mode for jade neatly packaged as a proper little npm module with a peer dependency.

Installation

npm install jade-code-mirror

Usage

var CodeMirror = require('jade-code-mirror');

var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: 'jade',
  lineNumbers: true
});

License

MIT

FAQs

Package last updated on 12 Oct 2014

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