Function: markdown-ts-table-insert-row-below

markdown-ts-table-insert-row-below is an interactive and byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts-table-insert-row-below &optional CLONE)

Documentation

Insert a table row below point.

If point is in the header, insert below the first row of the table. If CLONE is non-nil, or with a prefix argument, clone the current row. 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-insert-row-below (&optional clone)
  "Insert a table row below point.
If point is in the header, insert below the first row of the table.
If CLONE is non-nil, or with a prefix argument, clone the current row.
If point is not at a table, do nothing."
  (interactive "P")
  (setq clone (or clone current-prefix-arg))
    (markdown-ts-table-insert-row 'below clone))