summaryrefslogtreecommitdiff
path: root/settings/setup-markdown-mode.el
blob: 13c5ec01658ba29ec3d69deb32cc07fac0c70f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(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 'setup-markdown-mode)