org-list-to-generic

org-list-to-generic is an interactive compiled Lisp function in `org-list.el'.


(org-list-to-generic LIST PARAMS)

Convert a LIST parsed through `org-list-parse-list' to other formats.
Valid parameters PARAMS are:

:ustart String to start an unordered list
:uend String to end an unordered list

:ostart String to start an ordered list
:oend String to end an ordered list

:dstart String to start a descriptive list
:dend String to end a descriptive list
:dtstart String to start a descriptive term
:dtend String to end a descriptive term
:ddstart String to start a description
:ddend String to end a description

:splice When set to t, return only list body lines, don't wrap
them into :[u/o]start and :[u/o]end. Default is nil.

:istart String to start a list item.
:icount String to start an item with a counter.
:iend String to end a list item
:isep String to separate items
:lsep String to separate sublists
:csep String to separate text from a sub-list

:cboff String to insert for an unchecked check-box
:cbon String to insert for a checked check-box
:cbtrans String to insert for a check-box in transitional state

:nobr Non-nil means remove line breaks in lists items.

Alternatively, each parameter can also be a form returning
a string. These sexp can use keywords `counter' and `depth',
representing respectively counter associated to the current
item, and depth of the current sub-list, starting at 0.
Obviously, `counter' is only available for parameters applying to
items.