Function: markdown-footnote-text-find-new-location

markdown-footnote-text-find-new-location is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-footnote-text-find-new-location)

Documentation

Position the point at the proper location for a new footnote text.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-footnote-text-find-new-location ()
  "Position the point at the proper location for a new footnote text."
  (cond
   ((eq markdown-footnote-location 'end) (goto-char (point-max)))
   ((eq markdown-footnote-location 'immediately) (markdown-end-of-text-block))
   ((eq markdown-footnote-location 'subtree) (markdown-end-of-subtree))
   ((eq markdown-footnote-location 'header) (markdown-end-of-defun))))