pug-beautifier-cli
v0.0.2
Published
Pug(Jade) Beautify CLI Interface
Readme
Pug(was Jade) Beautify CLI tool.
Note : This program depends on pug-beautify module.
Installation
npm i -g pug-beautifier-cliUsage
$ pug-beautifier [options] [file or glob]Beautify <file> and overwrite it:
Options
-h, --help output usage information
-V, --version output the version number
-t, --filltab <tab_size> fill <tab_size> tabs rather than space, default 2 spaces.
-d, --keepdiv, keep div tag, default not.Examples
Beautify foo.pug:
$ pug-beautifier foo.pugBeautify foo.jade with 4 tabs, keep 'div' tag :
$ pug-beautifier -d -t 4 foo.jade