freebsd-ports/textproc/xslide.el/pkg-message
Yoichi NAKAYAMA a204dd6693 Add xslide.el, Emacs major mode for editing XSL stylesheets.
PR:		ports/33876
Submitted by:	Leo Kim <leo@florida.sarang.net>
2002-02-08 21:08:27 +00:00

21 lines
558 B
Plaintext

****************************************************************************
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)
****************************************************************************