1.0.3 • Published 5 years ago
hexo-beautify v1.0.3
Hexo Beautify
A Hexo filter wrapper for js-beautify. Supports HTML, CSS and JS files.
Instalation
To install hexo-beautify run:
npm install hexo-beautify --saveConfiguration
Inside your _config.yml:
# Hexo Beautify
beautify:
types:
- html
- css
- js
exclude:
- *.min.css
- *.min.js
html:
'indent_inner_html': false
'indent_size': 2
'indent_with_tabs': false
# More Options (https://github.com/beautify-web/js-beautify/blob/master/README.md)
css:
'indent_size': 2
'newline_between_rules': true
'indent_with_tabs': false
# More Options (https://github.com/beautify-web/js-beautify/blob/master/README.md)
js:
'indent_size': 2
'indent_with_tabs': false
# More Options (https://github.com/beautify-web/js-beautify/blob/master/README.md)You can discover more options in the README of the js-beautify project.