开发过程中,经常遇到html被压缩了无法查看,需要对html进行格式化,
或者html写的比较乱,需要格式化, 那么HTML格式化的方式有哪些?
总结下来有几种:
1.手动编辑:使用编辑器手动对HTML代码进行格式化和缩进。
2.在线工具:使用在线HTML格式化工具,如Code Beautify、HTML Formatter等。
3.文本编辑器插件:使用文本编辑器插件,如Notepad++等。
4.代码编辑器:使用代码编辑器,如Sublime Text、Atom等,这些编辑器都有插件或扩展可用于格式化HTML代码。
5.命令行工具:使用命令行工具,如HTML Tidy、HTML Beautifier等。
6.自动化工具:使用自动化工具,如Gulp、Grunt等,这些工具可以自动化地格式化HTML代码
其实,基本上没有必要自己实现,比如 这些在线工具可以直接实现, 直接打开:guud.cn
HTML格式化在线工具,HTML代码美化在线工具 - 永爽小工具
查看源码可知,使用的是
/*
源码地址
https://www.guud.cn/tools/html-formatter.html
*/
var options = {
"indent_size": indent_size,
"indent_char": indent_char,
"max_preserve_newlines": "5",
"preserve_newlines": true,
"keep_array_indentation": false,
"break_chained_methods": false,
"indent_scripts": "normal",
"brace_style": "collapse",
"space_before_conditional": true,
"unescape_strings": false,
"jslint_happy": false,
"end_with_newline": end_with_newline,
"wrap_line_length": wrap_line_length,
"indent_inner_html": indent_inner_html,
"comma_first": false,
"e4x": false,
"indent_empty_lines": false
};
sFormat = html_beautify(text, options);
使用的是 beautify-html 组件