Existe uma maneira de indentar código HTML ou PHP instantaneamente usando um programa como o Scite?

0

Se eu tiver o seguinte código:

<div id="nla">hi</div><table>
  <tr>
      <td>hi</td></tr></table>

Eu quero usar o Scite ou qualquer outro programa para tomar isso como entrada, e cuspi-lo como:

<div id="nla">
  hi
</div>
<table>
  <tr>
    <td>
      hi
    </td>
  </tr></table>
    
por coderama 27.04.2011 / 16:07

1 resposta

1

HTML arrumado vai fazer isso. Produziu

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta name="generator" content=
  "HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org" />

  <title></title>
</head>

<body>
  <div id="nla">
    hi
  </div>

  <table>
    <tr>
      <td>hi</td>
    </tr>
  </table>
</body>
</html>

e muitos erros da sua amostra. Dê a página inteira!

    
por 28.04.2011 / 21:45