1HTMLDocument.InlineElement(3kaKyaay)a module referHeTnMcLeDocument.InlineElement(3kaya)
2
3
4

NAME

6       HTMLDocument::InlineElement - Inline elements
7

SYNOPSIS

9       HTMLDocument::InlineElement< >
10
11
12     = Emphasis()
13
14
15     | StrongEmphasis()
16
17
18     | Abbreviation(String title)
19
20
21     | Citation()
22
23
24     | Definition()
25
26
27     | ComputerCode()
28
29
30     | SampleInput()
31
32
33     | SampleOutput()
34
35
36     | Variable()
37
38
39     | BiggerText()
40
41
42     | SmallerText()
43
44
45     | Bold()
46
47
48     | Italic()
49
50
51     | Subscript()
52
53
54     | Superscript()
55
56
57     | Hyperlink(String uri)
58
59
60     | InlineQuote(String citeuri)
61
62
63     | Span(String class)
64
65
66     | FormLabel()
67

DESCRIPTION

69       Non-empty  inline elements that can be included within a HTML document.
70       Example open tags of the HTML elements produced are  below  -  see  the
71       HTML  specifications  ⟨http://www.w3.org/TR/HTML4/⟩ for their semantics
72       and uses.
73
74
75     - Emphasis - <em>
76
77
78     - StrongEmphasis - <strong>
79
80
81     - Abbreviation("Algebraic  Data  Type")  -  <abbr  title="Algebraic  Data
82     Type">
83
84
85     - Citation - <cite>
86
87
88     - Definition - <dfn>
89
90
91     - ComputerCode - <code>
92
93
94     - SampleInput - <kbd>
95
96
97     - SampleOutput - <samp>
98
99
100     - Variable - <var>
101
102
103     - BiggerText - <big>
104
105
106     - SmallerText - <small>
107
108
109     - Bold - <b>
110
111
112     - Italic - <i>
113
114
115     - Subscript - <sub>
116
117
118     - Superscript - <sup>
119
120
121     -   Hyperlink("http://www.example.com/")   -   <a  href="http://www.exam
122     ple.com/">
123
124
125     -  InlineQuote("http://www.example.com/")  -  <q   cite="http://www.exam
126     ple.com/">
127
128
129     - Span("note") - <span class="note">
130
131
132     - FormLabel - <label>
133

AUTHORS

135       Kaya   standard  library  by  Edwin  Brady,  Chris  Morris  and  others
136       (kaya@kayalang.org). For further information see http://kayalang.org/
137

LICENSE

139       The Kaya standard library is free software;  you  can  redistribute  it
140       and/or  modify  it  under  the  terms  of the GNU Lesser General Public
141       License (version 2.1 or any later version) as  published  by  the  Free
142       Software Foundation.
143
145       HTMLDocument.addInlineElementAt (3kaya)
146       HTMLDocument.appendInlineElement (3kaya)
147
148
149
150Kaya                             December 2010HTMLDocument.InlineElement(3kaya)
Impressum