Function: markdown-end-of-text-block

markdown-end-of-text-block is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-end-of-text-block)

Documentation

Move forward to next beginning of a plain text block.

This function simply looks for blank lines without considering the surrounding context in light of Markdown syntax. For that, see markdown-forward-block.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-end-of-text-block ()
  "Move forward to next beginning of a plain text block.
This function simply looks for blank lines without considering
the surrounding context in light of Markdown syntax.  For that, see
`markdown-forward-block'."
  (interactive)
  (beginning-of-line)
  (skip-chars-forward " \t\n")
  (when (= (point) (point-min))
    (forward-char))
  (if (re-search-forward markdown-regex-block-separator nil t)
      (goto-char (match-end 0))
    (goto-char (point-max)))
  (skip-chars-backward " \t\n")
  (forward-line))