(defun dwuser ()
"Insert HTML link to a DW personal account"
(interactive)
(setq theuser (read-string "DW username: "))
(setq ao3 (y-or-n-p "For AO3?"))
(if ao3
(insert (concat "" theuser ""))
(insert (concat "" theuser ""))))
(defun dwcomm ()
"Insert HTML link to a DW community"
(interactive)
(setq theuser (read-string "DW comm name: "))
(setq ao3 (y-or-n-p "For AO3?"))
(if ao3
(insert (concat "" theuser ""))
(insert (concat "" theuser ""))))
(defun ao3user ()
"Insert HTML link to an AO3 user"
(interactive)
(setq theuser (read-string "AO3 username: "))
(setq ao3 (y-or-n-p "For AO3?"))
(if ao3
(insert (concat "" theuser ""))
(insert (concat "" theuser ""))))