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

24 lines
447 B
Text

[
{ type: install
message: <<EOM
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)
EOM
}
]