Function: markdown-ts-table-export-table-tsv
markdown-ts-table-export-table-tsv is an interactive and byte-compiled
function defined in markdown-ts-mode.el.gz.
Signature
(markdown-ts-table-export-table-tsv &optional DISPLAY)
Documentation
Export the Markdown table at point to tab-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-tsv (&optional display)
"Export the Markdown table at point to tab-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 'tsv))