Skip to content

Commit daa0a61

Browse files
committed
Added ordered reverted negative with start list example
1 parent c90fc92 commit daa0a61

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app/src/main/kotlin/org/wordpress/aztec/demo/MainActivity.kt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,12 @@ open class MainActivity : AppCompatActivity(),
109109
" <li>Nine</li>\n" +
110110
" <li>Eight</li>\n" +
111111
"</ol>"
112+
private val ORDERED_REVERSED_NEGATIVE_WITH_START = "<h4>Reversed Start in 10 List:</h4>" +
113+
"<ol reversed start=\"1\">\n" +
114+
" <li>Ten</li>\n" +
115+
" <li>Nine</li>\n" +
116+
" <li>Eight</li>\n" +
117+
"</ol>"
112118
private val LINE = "<hr />"
113119
private val UNORDERED = "<ul><li style=\"color:darkred\">Unordered</li><li>Should not have color</li></ul>"
114120
private val QUOTE = "<blockquote>Quote</blockquote>"
@@ -168,6 +174,7 @@ open class MainActivity : AppCompatActivity(),
168174
ORDERED_WITH_START +
169175
ORDERED_REVERSED +
170176
ORDERED_REVERSED_WITH_START +
177+
ORDERED_REVERSED_NEGATIVE_WITH_START +
171178
LINE +
172179
UNORDERED +
173180
QUOTE +

0 commit comments

Comments
 (0)