简体   繁体   English

没有空格或缩进的代码块

[英]Block of code with no spacing or indentation

I have received a html block of code (email template so lots of tables) that I have to work with that has no spacing or indentation aand is essentially all on one line. 我收到了我必须使用的html代码块(电子邮件模板,所以有很多表),没有空格或缩进,并且基本上都在一行上。 It's a nightmare to try and edit it. 尝试对其进行编辑是一场噩梦。

Does anyone know of any online tools or applications that you can copy and paste code into where it organises it for you? 有谁知道您可以将代码复制并粘贴到为您组织代码的任何在线工具或应用程序中?

olor="#e5e5e5" alink="#000000" class="yfix" leftmargin="0" rightmargin="0" topmargin="0"> <!--//-->      <table width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td width="100%" valign="top" bgcolor="#e5e5e5" align="center"> <table width="698" cellspacing="0" cellpadding="0" border="0"> <tr> <td width="5"><img hspace="0" height="1" width="5" src="http://info.page7media.ie/img/trans.gif" /></td> <td align="left"> <table width="688" cellspacing="0" cellpadding="0" border="0"> <tr> <td height="10"><a name="top_of_mail"></a></td> </tr> <tr> <td align="center"><font face="Arial, Helvetica, sans-serif" size="2" color="red" style="font-size: 12px; line-height: 17px;">If you are unable to see this message, click <a target="_blank" href="http://info.page7media.ie/u/gm.php?UID=JJ20yz3nz2&ID=279438389_478447_36061" style="text-decoration: underline;"><font face="Arial, Helvetica, sans-seri

Try Dirty Markup, it cleaned this markup up nicely 尝试Dirty Markup,它很好地清理了这个标记

http://www.dirtymarkup.com/ http://www.dirtymarkup.com/

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>

<body>
    olor="#e5e5e5" alink="#000000" class="yfix" leftmargin="0" rightmargin="0"
    topmargin="0"&gt; <!--//-->

    <table border="0" cellpadding="0" cellspacing="0" width="100%">
        <tr>
            <td align="center" style="background-color: #E5E5E5" valign="top"
            width="100%">
                <table border="0" cellpadding="0" cellspacing="0" width="698">
                    <tr>
                        <td width="5"><img height="1" hspace="0" src=
                        "http://info.page7media.ie/img/trans.gif" width=
                        "5"></td>

                        <td align="left">
                            <table border="0" cellpadding="0" cellspacing="0"
                            width="688">
                                <tr>
                                    <td height="10">
                                        <a id="top_of_mail" name=
                                        "top_of_mail"></a>
                                    </td>
                                </tr>

                                <tr>
                                    <td align="center">
                                        If you are unable to see this message,
                                        click <a href=
                                        "http://info.page7media.ie/u/gm.php?UID=JJ20yz3nz2&ID=279438389_478447_36061"
                                        style="text-decoration: underline;"
                                        target="_blank"></a>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</body>
</html>

You're looking for something called a "beautifier". 您正在寻找一种叫做“美化器”的东西。

Here's an online beautifier that supports HTML: http://ctrlq.org/beautifier/ 这是一个支持HTML的在线美化器: http : //ctrlq.org/beautifier/

I beautified it for you but noticed the beginning of your code sample is missing. 我为您美化了它,但是注意到您的代码示例的开头丢失了。

olor="#e5e5e5" alink="#000000" class="yfix" leftmargin="0" rightmargin="0" topmargin="0">

<!--//-->

<table width="100%" cellspacing="0" cellpadding="0" border="0">

  <tr>

    <td width="100%" valign="top" bgcolor="#e5e5e5" align="center">

      <table width="698" cellspacing="0" cellpadding="0" border="0">

        <tr>

          <td width="5">
            <img hspace="0" height="1" width="5" src="http://info.page7media.ie/img/trans.gif" />
          </td>

          <td align="left">

            <table width="688" cellspacing="0" cellpadding="0" border="0">

              <tr>

                <td height="10">
                  <a name="top_of_mail">
                  </a>
                </td>

              </tr>

              <tr>

                <td align="center">
                  <font face="Arial, Helvetica, sans-serif" size="2" color="red" style="font-size: 12px; line-height: 17px;">
                    If you are unable to see this message, click 
                    <a target="_blank" href="http://info.page7media.ie/u/gm.php?UID=JJ20yz3nz2&ID=279438389_478447_36061" style="text-decoration: underline;">
                      <font face="Arial, Helvetica, sans-seri

Use an online code formatter. 使用在线代码格式化程序。

http://ctrlq.org/beautifier/ http://ctrlq.org/beautifier/

I grabbed the first one that looked interesting. 我抓住了第一个看起来有趣的东西。 There are others out there. 还有其他人。

http://bit.ly/1Eqgeqr http://bit.ly/1Eqgeqr

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM