Construct an XDOC tree for a mangled topic link directive @(url ...).
Macro:
(defmacro @url (&rest trees) (list '@url-fn (cons 'list trees)))
Function:
(defun @url-fn (trees) (declare (xargs :guard (tree-listp trees))) (make-tree-dir/&& :@url trees))
Theorem:
(defthm stringp-of-@url (equal (treep (@url-fn trees)) (tree-listp trees)))