When editing HTML in emacs, is there a way to automatically pretty-format a blob of markup, changing something like this:
<table>
<tr>
<td>blah</td></tr></table>
...into this:
<table>
<tr>
<td>
blah
</td>
</tr>
</table>
|
1
|
|
|
|
|
|
By default, when you visit a M-x nxml-mode You can view nxml mode documentation with: C-h i g (nxml-mode) RET All that being said, you will probably have to use something like Tidy to re-format your xhtml example.
to
but I don't see a more general facility to do line breaks on certain xml tags as you want. Note that |
||
|
|
|
|
Tidy can do what you want, but only for whole buffer it seems (and the result is XHTML)
|
|||
|
|
|
|
http://www.delorie.com/gnu/docs/emacs/emacs_277.html
|
||||
|