;;; Emacs scripts for editing plotdict.xml (defun plotdict-block (title) "Given a marked part of the buffer containing some blocks, puts
tags around them." (interactive "sTitle name: ") (save-excursion (if (< (mark) (point)) (exchange-point-and-mark)) (beginning-of-line) (insert "
\n") (exchange-point-and-mark) (beginning-of-line) (insert "
\n")))