Function: dom-node

dom-node is a byte-compiled function defined in dom.el.gz.

Signature

(dom-node TAG &optional ATTRIBUTES &rest CHILDREN)

Documentation

Return a DOM node with TAG and ATTRIBUTES.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-node (tag &optional attributes &rest children)
  "Return a DOM node with TAG and ATTRIBUTES."
  `(,tag ,attributes ,@children))