Overview
page title heading deeplinkContainer fields are just like the inline-fields with the exception that they are more like wrappers around content rather than finite content providers themselves.
Container fields are just like the inline-fields with the exception that they are more like wrappers around content rather than finite content providers themselves.
| tag | name | sample, html |
|---|---|---|
| blockquote | blockquote |
This text should not be quoted, yet still within the block-quoted content. With a caption given, a <var>figcaption</var> immediately follows the blockquote with additional styles applied to visually compose the quote and the caption together. <blockquote>{inline-content}</blockquote>
|
| code | code fragment |
This paragraph contains a code fragment: // Example is just an example Go function
func Example() {
// this demonstrates a multi-line code field
// Semantic Enjin treats this as multi-line
// because it is not within a paragraph tag
}
The following is a
<code>{text}</code>
|
| dl | description listing |
<dl>
<dt>{inline-content}</dt>
<dd>{inline-content]</dd>
...
</dl>
|
| table | table |
A table is used to present all of these container fields. <table {attributes}>
<thead>...</thead>
<tbody>...</tbody>
<tfoot>...</tfoot>
</table>
|
| ol | ordered list |
<ol {attributes}>
<li>...</li>
...
</ol>
|
| p | paragraph |
This is paragraph content. It can only contain inline fields. The text within can be long and will line-wrap nicely. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. A second paragraph will have a top-margin set. <p {attributes}>{inline-content}</p>
|
| pre | preformatted text |
This content
has a staircase
effect due to the
preformatted empty space
<pre {attributes}>{text}</pre>
|
| ul | unordered list |
<ul {attributes}>
<li>...</li>
...
</ul>
|