Emacs Lisp: Get ATTENTION in those emails by using heading-underlined function

Emacs Lisp: Get ATTENTION in those emails by using heading-underlined function

Sometimes you wish to really put attention in emails to certain facts or paragraphs of text. Using the heading-underlined function you quickly get upcased heading underlined that your reader cannot miss it!

By using the command M-x heading-underlined you would get a result similar to below:

THIS IS HEADING REQUIRING YOUR ATTENTION:
=========================================
(defun heading-underlined ()
  "Asks for title and underlines it"
  (interactive)
  (let* ((heading (read-from-minibuffer "Heading:"))
     (heading (upcase heading))
     (l (length heading)))
    (insert heading)
    (insert ":\n")
    (insert-= l)
    (insert "\n")))

I am so often writing emails and need to bring attention of people to certain facts. Communication does matter, and attention is important factor of every communication cycle!

Leave Your Comment or Contact GNU.Support

Contact GNU.Support now. There is a simple rule at GNU.Support: if we can help you, we do, whenever and wherever necessary, and it's the way we've been doing business since 2002, and the only way we know


Full name:


E-mail:


Message: