diff --git a/init.d/text/web.el b/init.d/text/web.el index cb22366..38a862f 100644 --- a/init.d/text/web.el +++ b/init.d/text/web.el @@ -20,7 +20,8 @@ "Surround region with HTML tag." (interactive "*r") (if (region-active-p) - (let ((tag (completing-read "Tag: " '("em" "strong")))) + (let ((tag (completing-read "Tag: " + '("em" "strong" "blockquote")))) (insert (concat "<" tag ">" (delete-and-extract-region beg end) "")))