Variable: markdown-css-paths
markdown-css-paths is a customizable variable defined in
markdown-mode.el.
Value
nil
Documentation
List of URLs of CSS files to link to in the output XHTML.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-css-paths nil
"List of URLs of CSS files to link to in the output XHTML."
:group 'markdown
:safe (lambda (x) (and (listp x) (cl-every #'stringp x)))
:type '(repeat (string :tag "CSS File Path")))