(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 "\"[personal" 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 "\"[community" 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 "\"[archiveofourown.org" theuser ""))))