Skip to content

Instantly share code, notes, and snippets.

@yaotti
Created December 22, 2008 14:24
Show Gist options
  • Save yaotti/39001 to your computer and use it in GitHub Desktop.
Save yaotti/39001 to your computer and use it in GitHub Desktop.
(defun php-indent-as-html ()
(interactive)
(html-mode)
(message "indenting...")
(save-excursion
(mark-whole-buffer)
(indent-region (region-beginning) (region-end)))
(php-mode)
(message "indent ok."))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment