Function: markdown-ts-table-align-column-left

markdown-ts-table-align-column-left is an interactive and byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts-table-align-column-left)

Documentation

Align the table column at point to the left.

Do the work with markdown-ts-table-align-column, which see for more details.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts-table-align-column-left ()
  "Align the table column at point to the left.
Do the work with `markdown-ts-table-align-column', which see for more
details."
  (interactive)
  (markdown-ts-table-align-column 'left))