From 3372124e8c46f4c0cc588f33422a60a5ffbb164e Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 11 Mar 2021 18:40:34 +0100 Subject: [PATCH] Emacs: Add blockquote as suggestion to my/html-surround-with-tag. --- init.d/text/web.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) "")))