Function: orgtbl-to-orgtbl
orgtbl-to-orgtbl is an autoloaded and byte-compiled function defined
in org-table.el.gz.
Signature
(orgtbl-to-orgtbl TABLE PARAMS)
Documentation
Convert the orgtbl-mode(var)/orgtbl-mode(fun) TABLE into another orgtbl-mode table.
TABLE is a list, each entry either the symbol hline for
a horizontal separator line, or a list of fields for that line.
PARAMS is a property list of parameters that can influence the
conversion. All parameters from orgtbl-to-generic are
supported.
Useful when slicing one table into many. The :hline, :sep,
:lstart, and :lend provide orgtbl framing. :tstart and :tend can
be set to provide ORGTBL directives for the generated table.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;;###autoload
(defun orgtbl-to-orgtbl (table params)
"Convert the `orgtbl-mode' TABLE into another orgtbl-mode table.
TABLE is a list, each entry either the symbol `hline' for
a horizontal separator line, or a list of fields for that line.
PARAMS is a property list of parameters that can influence the
conversion. All parameters from `orgtbl-to-generic' are
supported.
Useful when slicing one table into many. The :hline, :sep,
:lstart, and :lend provide orgtbl framing. :tstart and :tend can
be set to provide ORGTBL directives for the generated table."
(require 'ox-org)
(orgtbl-to-generic table (org-combine-plists params (list :backend 'org))))