HTML 格式化程序 - 使用此特定格式

发布于 2024-11-18 14:26:16 字数 995 浏览 5 评论 0 原文

我知道有很多 HTML 格式化程序。我尝试过很多,但没有一个符合我的要求。如果您遇到以下情况,请提出建议:

1) 转换

    <div><%=request.getAttribute("NAV")%><div>
    BB<span>CC<input type="text" value="123"></span></div></div>

    <div><%=request.getAttribute("NAV")%>
        <div>BB
            <span>CC
                <input type="text" value="123">
            </span>
        </div>
    </div>

2) 保留所有符号

    (/>'/ wont be converted to /&gt;')
    (space wont be converted to &nbsp)
    (&nbsp wont be converted to space)

3) 不会变成

    <input type="text" value="123">

工具

    <input type="text"
    value="123">

只需要做的就是在每个新的 中换行并添加缩进每个 & /xxx> 嵌套。

I know there're a lot of HTML formatter. I've tried tons but none fit my requirement. Please suggest if u met something that can:

1) Convert

    <div><%=request.getAttribute("NAV")%><div>
    BB<span>CC<input type="text" value="123"></span></div></div>

Into

    <div><%=request.getAttribute("NAV")%>
        <div>BB
            <span>CC
                <input type="text" value="123">
            </span>
        </div>
    </div>

2) Preserve all symbols

    (/>'/ wont be converted to />')
    (space wont be converted to  )
    (  wont be converted to space)

3) Wont make

    <input type="text" value="123">

Into

    <input type="text"
    value="123">

What the tools only need to do is to new line every new <xxx and add indent for each <xxx & /xxx> nest.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

信仰 2024-11-25 14:26:16

HTML 格式化程序有剥离 php/ruby 代码和模板标签的习惯,因此在验证之前请确保您的 HTML 是 100% HTML。

我知道一个 HTML 格式化程序,可以

  • 转换
  • 保留所有符号
  • 不进行不必要的换行

http://dirtymarkup.com

查看 HTML 代码在用它替换现有的 HTML 之前检查异常情况。

HTML formatters have a habit of stripping php/ruby code and template tags, so make sure that before validating, that your HTML is 100% HTML.

I know a HTML formatter that will

  • Convert
  • Preserve all symbols
  • Not make unnecessary line breaks

http://dirtymarkup.com

Review the HTML code for abnormalities before replacing your existing HTML with it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文