Function: org-table--to-generic-table
org-table--to-generic-table is a byte-compiled function defined in
org-table.el.gz.
Signature
(org-table--to-generic-table PARAMS)
Documentation
Return custom table transcoder according to PARAMS.
PARAMS is a plist. See orgtbl-to-generic for more
information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table--to-generic-table (params)
"Return custom table transcoder according to PARAMS.
PARAMS is a plist. See `orgtbl-to-generic' for more
information."
(let ((backend (plist-get params :backend))
(splice (plist-get params :splice))
(tstart (plist-get params :tstart))
(tend (plist-get params :tend)))
`(lambda (table contents info)
(concat
,(and tstart (not splice)
`(concat ,(org-table--generic-apply tstart ":tstart") "\n"))
,(if (or (not backend) tstart tend splice) 'contents
`(org-export-with-backend ',backend table contents info))
,(org-table--generic-apply (and (not splice) tend) ":tend")))))