Function: markdown-ts-table-export-table-csv

markdown-ts-table-export-table-csv is an interactive and byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts-table-export-table-csv &optional DISPLAY)

Documentation

Export the Markdown table at point to comma-separated in a buffer.

If DISPLAY is non-nil, or with a prefix argument, display the export buffer after exporting. If point is not at a table, do nothing.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts-table-export-table-csv (&optional display)
  "Export the Markdown table at point to comma-separated in a buffer.
If DISPLAY is non-nil, or with a prefix argument, display the export
buffer after exporting.
If point is not at a table, do nothing."
  (interactive "P")
  (markdown-ts-table-export-table display 'csv))