# html2jade **Repository Path**: mirrors_hfeeki/html2jade ## Basic Information - **Project Name**: html2jade - **Description**: Converts HTML to Jade template. Not perfect but useful enough for non-daily conversions. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # html2jade # `html2jade` converts HTML into [Jade](https://github.com/visionmedia/jade) format. ## Requirements `html2jade` currently supports OS X and Linux platforms. Windows is currently not supported because `html2jade` uses `jsdom` which in turn depends on native code module `Contextify`. ## Install ## npm install html2jade ## Command-line Usage ## Outputs to stdout if input is URL html2jade http://twitter.com html2jade http://twitter.com > twitter.jade Outputs to file if input is file html2jade mywebpage.html # outputs mywebpage.jade html2jade public/*.html # converts all .html files to .jade Convert HTML from `stdin` cat mywebpage.html | html2jade - To generate [Scalate](http://scalate.fusesource.org/) compatible output: html2jade --scalate http://twitter.com html2jade --scalate http://twitter.com > twitter.jade html2jade --scalate mywebpage.html html2jade --scalate public/*.html ### Command-line Options ### * `-d, --double` - use double quotes for attributes * `-s, --scalate` - generate jade syntax compatible with Scalate * `-o, --outdir