annotate lisp/psgml/psgml-style.el @ 9:6f2bbbbbe05a

Added tag r19-15b5 for changeset 4b173ad71786
author cvs
date Mon, 13 Aug 2007 08:47:36 +0200
parents 376386a54a3c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; style.el --- example style file for psgml-fs.el and catalog.sgml
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 (
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ("example"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 default-top 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 default-bottom 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ("front")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ("body")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ("pubfront" text "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ("abstract"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 block t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 before (block t text "ABSTRACT")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 left 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ("p" block t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ("title" block t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ("titlegrp" block t bottom 2 default-bottom 0 default-top 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ("subtitle" before (text " // "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ("list" block t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ("head" block t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ("item"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 left (+ (fs-char 'left) 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 hang-from " * ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ("keyword"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 before (text "|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 after (text "|"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ("chapter" block t top 2 before (text "CHAPTER"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ("lit" block t literal t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 before (text (format "<%s>" (sgml-element-gi e)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 after (text " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 )