You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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-highlighter: 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
jade-brackets
This is the official jade plugin for Brackets. Brackets is the recommended editor for jade.
jade-highlighter
A simple syntax highlighter for jade.
Installation
npm install jade-highlighter
Usage
varjade=require('jade-highlighter');// 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 jadevarhtml=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.