Function: markdown-blockquote-indentation

markdown-blockquote-indentation is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-blockquote-indentation LOC)

Documentation

Return string containing necessary indentation for a blockquote at LOC.

Also see markdown-pre-indentation.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-blockquote-indentation (loc)
  "Return string containing necessary indentation for a blockquote at LOC.
Also see `markdown-pre-indentation'."
  (save-excursion
    (goto-char loc)
    (let* ((list-level (length (markdown-calculate-list-levels)))
           (indent ""))
      (dotimes (_ list-level indent)
        (setq indent (concat indent "    "))))))