diff options
Diffstat (limited to 'src/creole_test_main.c')
-rw-r--r-- | src/creole_test_main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/creole_test_main.c b/src/creole_test_main.c index 5c35e49..34ca07d 100644 --- a/src/creole_test_main.c +++ b/src/creole_test_main.c @@ -296,6 +296,11 @@ struct { .input = "## Sublist item", .output = "<p>## Sublist item</p>" }, + { + .name = "Horizontal rule", + .input = "Some text\n\n----\n\nSome more text", + .output = "<p>Some text</p><hr /><p>Some more text</p>" + }, #if 0 { .name = "Ordered item with ordered sublist", @@ -308,11 +313,6 @@ struct { .output = "<ul><li> Item<ol>\n<li> Subitem</li></ol></li></ul>" }, { - .name = "Horizontal rule", - .input = "Some text\n----\nSome more text", - .output = "<p>Some text</p><hr /><p>Some more text</p>" - }, - { .name = "Preformatted block", .input = "{{{\nPreformatted block\n}}}", .output = "<pre>Preformatted block\n</pre>" |