当前位置: 首页 > 工具软件 > HTML Tidy > 使用案例 >

html input文字缩进,使用HTML Tidy来缩进HTML代码?

宋运锋
2023-12-01

我没有找到的可能性“只有重新缩进 - 没有任何变化”。下一个配置文件将尽可能低地“修复”,并且(大部分)只会重新缩进html。 Tidy仍在纠正一些错误的情况,如重复(重复)的属性。

#based on http://tidy.sourceforge.net/docs/quickref.html

#HTML, XHTML, XML Options Reference

anchor-as-name: no #?

doctype: omit

drop-empty-paras: no

fix-backslash: no

fix-bad-comments: no

fix-uri:no

hide-endtags: yes #?

#input-xml: yes #?

join-styles: no

literal-attributes: yes

lower-literals: no

merge-divs: no

merge-spans: no

output-html: yes

preserve-entities: yes

quote-ampersand: no

quote-nbsp: no

show-body-only: auto

#Diagnostics Options Reference

show-errors: 0

show-warnings: 0

#Pretty Print Options Reference

break-before-br: yes

indent: yes

indent-attributes: no #default

indent-spaces: 4

tab-size: 4

wrap: 132

wrap-asp: no

wrap-jste: no

wrap-php: no

wrap-sections: no

#Character Encoding Options Reference

char-encoding: utf8

#Miscellaneous Options Reference

force-output: yes

quiet: yes

tidy-mark: no

例如下一个HTML片段

not closed para

h1 head

  • not closed li
  • closed li

some text

将变为

not closed para

h1 head

  • not closed li
  • closed li
some text

正如可以注意到,在hide-endtags: yes隐藏从输入所述第二子弹闭合。设置hide-endtags: no - 将获得下一个:

not closed para

h1 head

  • not closed li
  • closed li
some text

所以,tidy增加了关闭

和关闭到第一发子弹。

我没有发现一个可能性保留输入的所有内容,只重新保留该文件。

 类似资料: