Function: orgtbl-to-csv

orgtbl-to-csv is an autoloaded and byte-compiled function defined in org-table.el.gz.

Signature

(orgtbl-to-csv TABLE PARAMS)

Documentation

Convert the orgtbl-mode(var)/orgtbl-mode(fun) TABLE to CSV material.

This does take care of the proper quoting of fields with comma or quotes.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;;###autoload
(defun orgtbl-to-csv (table params)
  "Convert the `orgtbl-mode' TABLE to CSV material.
This does take care of the proper quoting of fields with comma or quotes."
  (orgtbl-to-generic table
		     (org-combine-plists '(:sep "," :fmt org-quote-csv-field)
					 params)))