Construct an XDOC tree for an XDOC hyperlink
See the
Macro:
(defmacro see_ (&rest args) (mv-let (trees attributes) (partition-macro-args args 'see_) (let ((attributes (keyword-macro-args-to-terms attributes))) (list 'see_-fn (cons 'list attributes) (cons 'list trees)))))
Function:
(defun see_-fn (attributes trees) (declare (xargs :guard (and (keyword-tree-alistp attributes) (tree-listp trees)))) (make-tree-tag :see attributes trees))
Theorem:
(defthm stringp-of-see_ (equal (treep (see_-fn attributes trees)) (and (keyword-tree-alistp attributes) (tree-listp trees))))