Function: markdown-pipe-at-bol-p

markdown-pipe-at-bol-p is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-pipe-at-bol-p)

Documentation

Return non-nil if the line begins with a pipe symbol.

This may be useful for tables and Pandoc's line_blocks extension.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-pipe-at-bol-p ()
  "Return non-nil if the line begins with a pipe symbol.
This may be useful for tables and Pandoc's line_blocks extension."
  (char-equal (char-after (line-beginning-position)) ?|))