From 6659337410225b813ea902bfa4b2e5ba3c2c1aaa Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 3 Mar 2015 19:35:56 +0100 Subject: support ordered lists --- test/data/format/javadocHtml.md | 1 + test/data/format/javadocOrderedList.java | 10 ++++++++++ test/data/format/javadocOrderedList.md | 14 ++++++++++++++ test/data/format/orderedList.html | 31 +++++++++++++++++++++++++++++++ test/data/format/orderedList.kt | 8 ++++++++ 5 files changed, 64 insertions(+) create mode 100644 test/data/format/javadocOrderedList.java create mode 100644 test/data/format/javadocOrderedList.md create mode 100644 test/data/format/orderedList.html create mode 100644 test/data/format/orderedList.kt (limited to 'test/data/format') 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; + +/** + *
    + *
  1. Rinse
  2. + *
  3. Repeat
  4. + *
+ */ +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 @@ + + +test / Bar + + +test / Bar
+
+

Bar

+class Bar
+

Usage instructions:

+

Description

+
  1. Rinse

    +
  2. Repeat

    +

+
+
+
+

Constructors

+ + + + + + + +
+<init> +Bar()

Usage instructions:

+
+ + 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 { +} -- cgit