Function: markdown-next-line-indent
markdown-next-line-indent is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-next-line-indent)
Documentation
Return the number of leading whitespace characters in the next line.
Return 0 if line is the last line in the buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-next-line-indent ()
"Return the number of leading whitespace characters in the next line.
Return 0 if line is the last line in the buffer."
(save-excursion
(if (= (line-end-position) (point-max))
0
(forward-line 1)
(current-indentation))))