Si solo necesita una sangría bastante sin introducir nuevos saltos de línea, puede aplicar el indent-region
comando a todo el búfer con estas pulsaciones de teclas:
C-x h
C-M-\
Si también necesita introducir saltos de línea, de modo que las etiquetas de apertura y cierre estén en líneas separadas, puede usar la siguiente función elisp muy agradable, escrita por Benjamin Ferrari . Lo encontré en su blog y espero que esté bien para mí reproducirlo aquí:
(defun bf-pretty-print-xml-region (begin end)
"Pretty format XML markup in region. You need to have nxml-mode
http://www.emacswiki.org/cgi-bin/wiki/NxmlMode installed to do
this. The function inserts linebreaks to separate tags that have
nothing but whitespace between them. It then indents the markup
by using nxml's indentation rules."
(interactive "r")
(save-excursion
(nxml-mode)
(goto-char begin)
(while (search-forward-regexp "\>[ \\t]*\<" nil t)
(backward-char) (insert "\n") (setq end (1+ end)))
(indent-region begin end))
(message "Ah, much better!"))
Esto no depende de una herramienta externa como Tidy.
wrong type argument: stringp, nil