1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Minor grammar changes.

This commit is contained in:
Nathan Weizenbaum 2008-12-29 21:16:01 -08:00
parent 8a9e0bcb7d
commit 1185a59abd

View file

@ -181,12 +181,12 @@ text nested beneath them.")
(haml-reindent-region-by (- haml-indent-offset))))
(defun haml-replace-region (begin end)
"Replaces the current block of Haml code with the HTML equivalent"
"Replaces the current block of Haml code with the HTML equivalent."
(interactive "r")
(shell-command-on-region begin end "haml" "haml-output" t))
(defun haml-output-region (begin end)
"Returns the HTML output for the current block of Haml code"
"Displays the HTML output for the current block of Haml code."
(interactive "r")
(shell-command-on-region begin end "haml" "haml-output" nil))