Remove this line
[kdeaccessibility.git] / ksayit / DocBook.README
blob97862c04a060d10fb08df3371065897440e05ed1
1 KSayIt supports the following subset of DocBook elements:
3 Book ::=
4  (BookInfo, Chapter+)
6 BookInfo ::=
7  ((KeywordSet|Abstract|AuthorGroup|Date|ReleaseInfo|Title)+)
8  
9 KeywordSet ::=
10  (Keyword+)
12 Keyword ::=
13  (#PCDATA+)
15 Abstract ::=
16  (Para+)
18 Authorgroup ::=
19  (Author+)
21 Author ::=
22  ((Firstname|Surname)+)
24 Firstname ::=
25  (#PCDATA+)
27 Surname ::=
28  (#PCDATA+)
30 Date ::=
31  (#PCDATA+)
33 ReleaseInfo ::=
34  (#PCDATA+)
36 Title ::=
37  (#PCDATA+)
39 Chapter ::=
40  (Title,(Para|Sect1)+)
42 Sect1 ::=
43  (Title,(Para|Sect2)+)
45 Sect2 ::=
46  (Title,(Para|Sect3)+)
48 Sect3 ::=
49  (Title,(Para|Sect4)+)
51 Sect4 ::=
52  (Title,(Para|Sect5)+)
54 Sect5 ::=
55  (Title, Para+)
57 Para ::=
58  ((#PCDATA|Citation|Emphasis|ForeignPhrase|Phrase|Action|Application|
59    Command|Email|Filename|Function|GUIButton|GUIIcon|GUILabel|GUIMenu|
60    GUIMenuItem|GUISubmenu|ItemizedList|KeyCap|KeyCode|KeyCombo|KeySym|Literal|
61    MenuChoice|MouseButton|Option|UserInput|Author|CorpAuthor|Comment|
62    Subscript|Superscript|Note|Tip|Warning)+)
63    
64 ItemizedList ::=
65  (ListItem+)
67 ListItem ::=
68  (#PCDATA+)
70 All entities must be defined in an internal DTD within the document. External entities are NOT supported.
72 -- 
73 Robert Vogl