Emit the code required to print a close tag whose name is NAME.
(defun emit-close-tag (name) "Emit the code required to print a close tag whose name is NAME." (decf %yaclml-indentation-depth% 2) (emit-princ "</" name) (emit-indentation) (emit-princ ">"))Source Context