blob: d5897f1671835bdd0f319139d0372b9fdee4e65c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
===
To use docbook-mode, add the following lines to your ~/.emacs:
;; DocBook IDE mode
(autoload 'docbook-mode "docbookide" "Major mode for DocBook documents." t)
;; Turn on font lock when in DocBook mode
(add-hook 'docbook-mode-hook
'turn-on-font-lock)
;; You might want to make this the default for .sgml or .xml documents,
;; or you might want to rely on -*- DocBook -*- on the first line,
;; or perhaps buffer variables. It's up to you...
(setq auto-mode-alist
(append
(list
'("\\.sgm" . docbook-mode))
'("\\.sgml" . docbook-mode))
'("\\.xml" . docbook-mode))
auto-mode-alist))
===
|