Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 702 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 702 Bytes

regularjs-beautify-dozen

Easy to format all the templates inside a JavaScript file. It only takes care of the style of those template strings beginning with the specific html comment - <!-- @regular -->.

Feel free to chain this tool before/after other JavaScript code formatter, it will not conflict with the others since it only work on Regularjs templates and do not touch the other parts of our source code.

Usage

Use as lib

npm install regularjs-beautify-dozen

then

import { format } from "regularjs-beautify-dozen"

Use as command-line

npx regularjs-beautify-dozen the-file-to-be-beautified

Note: above command will effect the source file directly.