diff options
Diffstat (limited to 'test/data/format')
-rw-r--r-- | test/data/format/javadocHtml.md | 1 | ||||
-rw-r--r-- | test/data/format/javadocOrderedList.java | 10 | ||||
-rw-r--r-- | test/data/format/javadocOrderedList.md | 14 | ||||
-rw-r--r-- | test/data/format/orderedList.html | 31 | ||||
-rw-r--r-- | test/data/format/orderedList.kt | 8 |
5 files changed, 64 insertions, 0 deletions
diff --git a/test/data/format/javadocHtml.md b/test/data/format/javadocHtml.md index 303b102c..64b7a5a4 100644 --- a/test/data/format/javadocHtml.md +++ b/test/data/format/javadocHtml.md @@ -14,6 +14,7 @@ Block code ``` * List Item + diff --git a/test/data/format/javadocOrderedList.java b/test/data/format/javadocOrderedList.java new file mode 100644 index 00000000..1c7f8a3e --- /dev/null +++ b/test/data/format/javadocOrderedList.java @@ -0,0 +1,10 @@ +package test; + +/** + * <ol> + * <li>Rinse</li> + * <li>Repeat</li> + * </ol> + */ +public class Bar { +} diff --git a/test/data/format/javadocOrderedList.md b/test/data/format/javadocOrderedList.md new file mode 100644 index 00000000..ba5935e2 --- /dev/null +++ b/test/data/format/javadocOrderedList.md @@ -0,0 +1,14 @@ +[test](test/index) / [test](test/test/index) / [Bar](test/test/-bar) + + +# Bar + +`public open class Bar` + + 1. Rinse + 1. Repeat + + + + + diff --git a/test/data/format/orderedList.html b/test/data/format/orderedList.html new file mode 100644 index 00000000..223684ff --- /dev/null +++ b/test/data/format/orderedList.html @@ -0,0 +1,31 @@ +<HTML> +<HEAD> +<title>test / Bar</title> +</HEAD> +<BODY> +<a href="test/index">test</a> / <a href="test/-bar/index">Bar</a><br/> +<br/> +<h1>Bar</h1> +<code><span class="keyword">class </span><span class="identifier">Bar</span></code><br/> +<p>Usage instructions:</p> +<h3>Description</h3> +<ol><li><p>Rinse</p> +</li><li><p>Repeat</p> +</li></ol><br/> +<br/> +<br/> +<br/> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<a href="test/-bar/-init-"><init></a></td> +<td> +<code><span class="identifier">Bar</span><span class="symbol">(</span><span class="symbol">)</span></code><p>Usage instructions:</p> +</td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/test/data/format/orderedList.kt b/test/data/format/orderedList.kt new file mode 100644 index 00000000..03681c7a --- /dev/null +++ b/test/data/format/orderedList.kt @@ -0,0 +1,8 @@ +/** + * Usage instructions: + * + * 1. Rinse + * 1. Repeat + */ +class Bar { +} |