MailChimp 自动完成自定义 HTML,破坏格式

MailChimp auto completing custom HTML, ruining formatting

有没有办法阻止 MailChimp 尝试自动完成我的 HTML?

我创建了一个自定义 HTML 模板以与 MailChimp 一起使用。但是,当我在粘贴后单击 'Save & Close' 时,MailChimp 正在添加和删除一些标签以尝试 'fix' 我的代码。

这是一个例子。我正在使用一些 VML 来解决一些 Outlook 问题。

这是我粘贴的代码的一小部分:

  <table cellpadding="0" ... >
    <tr>
      <td background="http://oi63.tinypic.com/2jexxsp.jpg" bgcolor="#7be2eb" width="640" valign="top">
        <!--[if gte mso 9]>
        <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:640px;">
        <v:fill type="frame" src="http://oi63.tinypic.com/2jexxsp.jpg" color="#7be2eb" />
        <v:textbox style="mso-fit-shape-to-text:true" inset="0,0,0,0">
        <![endif]-->
          <tr>

           ...

          </tr>
         <!--[if gte mso 9]>
         </v:textbox>
         </v:rect>
         <![endif]-->
      </td>
    </tr>
  </table>

但是保存后返回到编辑器,是这样的:

  <table cellpadding="0" ... >
    <tr>
      <td background="http://oi63.tinypic.com/2jexxsp.jpg" bgcolor="#7be2eb" width="640" valign="top">
        <!--[if gte mso 9]>
        <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:640px;">
        <v:fill type="frame" src="http://oi63.tinypic.com/2jexxsp.jpg" color="#7be2eb" />
        <v:textbox style="mso-fit-shape-to-text:true" inset="0,0,0,0">
        <![endif]-->
          </td></tr><tr>

           ...

          </tr>
         <!--[if gte mso 9]>
         </v:textbox>
         </v:rect>
         <![endif]-->
      </table></td>
    </tr>
  </table>

它试图为我关闭 TD(line 9)、TR(line 9) 和 TABLE(line 18) 标签,并且完全无视它们已经关闭的事实。

还有其他几个地方,因为它过早地创建了结束标签,它只会删除我在更下方制作的结束标签。

有没有办法阻止 MailChimp 尝试 'fix' 我的代码?

您需要在 VML 区域内添加 table。 Mailchimp 会自动关闭 tdtr 元素以防止出现严重的渲染问题。

  <table cellpadding="0" ... >
    <tr>
      <td background="http://oi63.tinypic.com/2jexxsp.jpg" bgcolor="#7be2eb" width="640" valign="top">
        <!--[if gte mso 9]>
        <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:640px;">
        <v:fill type="frame" src="http://oi63.tinypic.com/2jexxsp.jpg" color="#7be2eb" />
        <v:textbox style="mso-fit-shape-to-text:true" inset="0,0,0,0">
        <![endif]-->
        <table cellpadding="0" ...>
          <tr>
            <td>

           ...
            </td>
          </tr>
         </table>
         <!--[if gte mso 9]>
         </v:textbox>
         </v:rect>
         <![endif]-->
      </td>
    </tr>
  </table>