Function: org-texinfo--split-plain-list
org-texinfo--split-plain-list is a byte-compiled function defined in
ox-texinfo.el.gz.
Signature
(org-texinfo--split-plain-list PLAIN-LIST ITEMS)
Documentation
Insert a new plain list before the plain list PLAIN-LIST.
Remove ITEMS from PLAIN-LIST and use them as the contents of the new plain list.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
(defun org-texinfo--split-plain-list (plain-list items)
"Insert a new plain list before the plain list PLAIN-LIST.
Remove ITEMS from PLAIN-LIST and use them as the contents of the
new plain list."
(org-element-insert-before
(apply #'org-element-create 'plain-list
(list :type 'descriptive
:attr_texinfo (org-element-property :attr_texinfo plain-list)
:post-blank 1)
(mapc #'org-element-extract items))
plain-list))