Variable: rng-any-content
rng-any-content is a variable defined in rng-pttrn.el.gz.
Value
(zero-or-more
(choice (text) (attribute (any-name) (text))
(element (any-name) (ref #0 "any-content"))))
Documentation
A pattern that matches the attributes and content of any element.
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/rng-pttrn.el.gz
(defconst rng-any-content
(let* ((ref (rng-make-ref "any-content"))
(pattern (rng-make-zero-or-more
(rng-make-choice
(list
(rng-make-text)
(rng-make-attribute (rng-make-any-name-name-class)
(rng-make-text))
(rng-make-element (rng-make-any-name-name-class)
ref))))))
(rng-ref-set ref pattern)
pattern)
"A pattern that matches the attributes and content of any element.")