freebsd-ports/textproc/xslide.el/pkg-message

21 lines
558 B
Plaintext
Raw Normal View History

****************************************************************************
To use xsl-mode, add to your ~/.emacs the following lines:
;; XSL mode
(autoload 'xsl-mode "xslide" "Major mode for XSL stylesheets." t)
;; Turn on font lock when in XSL mode
(add-hook 'xsl-mode-hook
'turn-on-font-lock)
(setq auto-mode-alist
(append
(list
'("\\.fo" . xsl-mode)
'("\\.xsl" . xsl-mode))
auto-mode-alist))
;; Uncomment if using abbreviations
;; (abbrev-mode t)
****************************************************************************