You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
589 B
18 lines
589 B
(prelude-ensure-module-deps '(markdown-mode))
|
|
|
|
(setq markdown-imenu-generic-expression
|
|
'(("title" "^\\(.*\\)[\n]=+$" 1)
|
|
("h2-" "^\\(.*\\)[\n]-+$" 1)
|
|
("h1" "^# \\(.*\\)$" 1)
|
|
("h2" "^## \\(.*\\)$" 1)
|
|
("h3" "^### \\(.*\\)$" 1)
|
|
("h4" "^#### \\(.*\\)$" 1)
|
|
("h5" "^##### \\(.*\\)$" 1)
|
|
("h6" "^###### \\(.*\\)$" 1)
|
|
("fn" "^\\[\\^\\(.*\\)\\]" 1)))
|
|
|
|
(add-hook 'markdown-mode-hook
|
|
(lambda ()
|
|
(setq imenu-generic-expression markdown-imenu-generic-expression)))
|
|
|
|
(provide 'prelude-markdown)
|