aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-01-29 20:03:14 +0000
committerJohn Ankarström <john@ankarstrom.se>2021-01-29 20:03:14 +0000
commitd72f8481386fa129152cf759eeb2075762053de6 (patch)
treea26573988aa2f8d6d872d5599438c9e6227dc9c5
parentcbdb6934f4d8bea31f8622e0382358cfad58fec0 (diff)
downloadem-d72f8481386fa129152cf759eeb2075762053de6.tar.gz
Update test
-rw-r--r--test.em8
-rw-r--r--test.html28
2 files changed, 26 insertions, 10 deletions
diff --git a/test.em b/test.em
index 7191935..2abf836 100644
--- a/test.em
+++ b/test.em
@@ -1,6 +1,6 @@
= Em example =
-This is an example of *Em*.
+This is an example of *Em* [1].
- Here is an
unordered list item.
@@ -11,10 +11,14 @@ ordered list item.
2. Here is another.
- Here is a list
- - With another list inside it
+ - With another list inside it [a]
+
+ [1] http://example.com
+ [a] Reference list item
term: definition
long term: long
definition
code block
+ with two lines
diff --git a/test.html b/test.html
index ddcb021..212c830 100644
--- a/test.html
+++ b/test.html
@@ -1,26 +1,38 @@
<h1>Em example</h1>
-<p>This is an example of *Em*.
+<p>
+This is an example of <i>Em</i> (<a href="http://example.com">link</a>).
</p>
-<ul><li>Here is an
+<ul>
+<li>Here is an
unordered list item.
</li><li>Here is another.
</li>
</ul>
-<ol><li>Here is an
+<ol>
+<li value="1">Here is an
ordered list item.
-</li><li>Here is another.
+</li><li value="2">Here is another.
</li>
</ol>
-<ul><li>Here is a list
+<ul>
+<li>Here is a list
</li><ul>
-<li>With another list inside it
+<li>With another list inside it [<a href="#refa">a</a>]
</li>
</ul>
</ul>
-<dl><dt>term</dt><dd>definition
+<ol>
+<li value="1" id="ref1">http://example.com
+</li><li value="a" id="refa">Reference list item
+</li>
+</ol>
+<dl>
+<dt>term</dt><dd>definition
</dd><dt>long term</dt><dd>long
definition
</dd>
</dl>
-<pre>code block
+<pre>
+code block
+with two lines
</pre>