Provided by: kaya_0.4.4-6ubuntu3_amd64 

NAME
HTMLDocument::InlineElement - Inline elements
SYNOPSIS
HTMLDocument::InlineElement< >
= Emphasis()
| StrongEmphasis()
| Abbreviation(String title)
| Citation()
| Definition()
| ComputerCode()
| SampleInput()
| SampleOutput()
| Variable()
| BiggerText()
| SmallerText()
| Bold()
| Italic()
| Subscript()
| Superscript()
| Hyperlink(String uri)
| InlineQuote(String citeuri)
| Span(String class)
| FormLabel()
DESCRIPTION
Non-empty inline elements that can be included within a HTML document. Example open tags of the HTML
elements produced are below - see the HTML specifications for their semantics and uses.
- Emphasis - <em>
- StrongEmphasis - <strong>
- Abbreviation("Algebraic Data Type") - <abbr title="Algebraic Data Type">
- Citation - <cite>
- Definition - <dfn>
- ComputerCode - <code>
- SampleInput - <kbd>
- SampleOutput - <samp>
- Variable - <var>
- BiggerText - <big>
- SmallerText - <small>
- Bold - <b>
- Italic - <i>
- Subscript - <sub>
- Superscript - <sup>
- Hyperlink("http://www.example.com/") - <a href="http://www.example.com/">
- InlineQuote("http://www.example.com/") - <q cite="http://www.example.com/">
- Span("note") - <span class="note">
- FormLabel - <label>
AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further
information see http://kayalang.org/
LICENSE
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of
the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free
Software Foundation.
RELATED
HTMLDocument.addInlineElementAt (3kaya)
HTMLDocument.appendInlineElement (3kaya)
Kaya July 2013 HTMLDocument.InlineElement(3kaya)