aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorNik Clayton <nik@FreeBSD.org>1999-04-04 17:08:20 +0000
committerNik Clayton <nik@FreeBSD.org>1999-04-04 17:08:20 +0000
commita49230e35222aa5971ff38d908c628873cf59256 (patch)
tree217e82919d0d24081c5f0916b654b3efb3ec74b4 /share
parentecc96ac7ba21fcedf7dd06ca8fd37084eae80c0e (diff)
Notes
Diffstat (limited to 'share')
-rw-r--r--share/sgml/freebsd.dsl39
1 files changed, 11 insertions, 28 deletions
diff --git a/share/sgml/freebsd.dsl b/share/sgml/freebsd.dsl
index 15ca0aaca8..d06a5f7366 100644
--- a/share/sgml/freebsd.dsl
+++ b/share/sgml/freebsd.dsl
@@ -46,32 +46,6 @@
(define html-manifest
;; Write a manifest?
#f)
-
- <!-- This replaces the existing mechanism for showing verbatim
- blocks of text (programlistings, screens, and so forth.
-
- Norm's stylesheet renders these in a table, with optional
- shading if %shade-verbatim% is set. Previous practice for
- the LinuxDoc DTD (and John Fieber's stylesheet) was to
- indent them using <blockquote>. Stick with previous practice.
-
- Norm says he will introduce a tweakable knob to affect this
- in the future. -->
-(define ($verbatim-display$ line-numbers?)
- (let ((content (make element gi: "BLOCKQUOTE"
- attributes: (list
- (list "CLASS" (gi)))
- (make element gi: "PRE"
- (if line-numbers?
- ($verbatim-content-with-linenumbers$)
- ($verbatim-content$))))))
- (if %shade-verbatim%
- (make element gi: "TABLE"
- attributes: ($shade-verbatim-attr$)
- (make element gi: "TR"
- (make element gi: "TD"
- content)))
- content)))
]]>
<!-- Print only ................................................... -->
@@ -80,6 +54,15 @@
]]>
<!-- Both sets of stylesheets .................................... -->
+
+ (define %may-format-variablelist-as-table%
+ #f)
+
+ (define %indent-programlisting-lines%
+ " ")
+
+ (define %indent-screen-lines%
+ " ")
<!-- Slightly deeper customisations -->
@@ -123,8 +106,8 @@
(element (caution para) ($admonpara$))
(element (caution simpara) ($admonpara$))
- (define usen-warning-label-title-sep ": ")
- (define usen-caution-label-title-sep ": ")
+ (define en-warning-label-title-sep ": ")
+ (define en-caution-label-title-sep ": ")
<!-- Tell the stylesheet about our local customisations -->