Skip to content
Snippets Groups Projects
Verified Commit 6c73265e authored by Sebastian's avatar Sebastian
Browse files

Add ordered lists to HtmlText testing data

parent 87a88456
No related branches found
No related tags found
1 merge request!366Add support for HTML blog posts
......@@ -73,6 +73,7 @@ fun main() = preview {
contains a <a href="https://google.com">link to Google</a>
</p>
<blockquote>This is a block quote<br/>with multiple lines.</blockquote>
Unordered lists:
<ul>
<li>foo</li>
<li>direct children<ul><li>child1</li><li>child2</li></ul></li>
......@@ -85,6 +86,15 @@ fun main() = preview {
<li>foo</li>
<li>bar</li>
</ul>
Ordered lists:
<ol>
<li>foo</li>
<li>direct children<ol><li>child1</li><li>child2</li></ol></li>
<ol>
<li>bar1</li>
<li>bar2</li>
</ol>
</ol>
""".trimIndent()
SelectionContainer {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment