Variable: dsssl-sgml-declaration

dsssl-sgml-declaration is a customizable variable defined in scheme.el.gz.

Value

"<!DOCTYPE style-sheet PUBLIC \"-//James Clark//DTD DSSSL Style Sheet//EN\">\n"

Documentation

An SGML declaration for the DSSSL file.

If it is defined as a string this will be inserted into an empty buffer which is in dsssl-mode. It is typically James Clark's style-sheet doctype, as required for Jade.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/scheme.el.gz
(defcustom dsssl-sgml-declaration
  "<!DOCTYPE style-sheet PUBLIC \"-//James Clark//DTD DSSSL Style Sheet//EN\">
"
  "An SGML declaration for the DSSSL file.
If it is defined as a string this will be inserted into an empty buffer
which is in `dsssl-mode'.  It is typically James Clark's style-sheet
doctype, as required for Jade."
  :type '(choice (string :tag "Specified string")
                 (const :tag "None" :value nil)))