diff --git a/spec/index.html b/spec/index.html index b9d400bc..011bfa89 100644 --- a/spec/index.html +++ b/spec/index.html @@ -152,6 +152,54 @@
Creates a figure that can be xrefed by ID using the `emu-xref` element.
+caption: Optional: Caption for the example
+informative: Optional: If present, the figure is informative. Otherwise it is normative.
+ +
+ <emu-figure caption="Example figure">
+ [[insert some awesome graphic here, maybe something like figure 2]]
+ </emu-figure>
+
+ Creates a table that can be xrefed by ID using the `emu-xref` element.
+caption: Optional: Caption for the example
+informative: Optional: If present, the table is informative. Otherwise it is normative.
+ +
+ <emu-table caption="Example table">
+ <table>
+ <tr><th>Column 1</th><th>Column 2</th></tr>
+ <tr><td>Value</td><td>Value 2</td></tr>
+ <tr><td>Value</td><td>Value 2</td></tr>
+ <tr><td>Value</td><td>Value 2</td></tr>
+ <tr><td>Value</td><td>Value 2</td></tr>
+ </table>
+ </emu-table>
+
+ Column 1 | Column 2 |
---|---|
Value | Value 2 |
Value | Value 2 |
Value | Value 2 |
Value | Value 2 |
Creates an informative example. Examples are numbered based on how many are present in the example's containing clause. Can be xrefed by ID using `emu-xref`.