When editing HTML in emacs, is there a way to automatically pretty-format a blob of markup, changing something like this:
-
2021-01-29 20:53
You can do a replace regexp
M-x replace-regexp
\([^>]+>\)
\1C-q-j
Indent the whole buffer
C-x h
M-x indent-region
|