diff options
-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 7bb7816..5c35e49 100644 --- a/src/creole_test_main.c +++ b/src/creole_test_main.c @@ -257,6 +257,11 @@ struct { .output = "<pre><code>if (x != NULL) {\n for (i = 0; i < size; i++) {\n if (x[i] > 0) {\n x[i]--;\n }}}</code></pre>", }, { + .name = "Inline tt", + .input = "Inline {{{tt}}} example {{{here}}}!", + .output = "<p>Inline <tt>tt</tt> example <tt>here</tt>!</p>" + }, + { .name = "Simple unordered list", .input = "* list item\n*list item 2", .output = "<ul><li> list item<li>list item 2</ul>" @@ -329,11 +334,6 @@ struct { .input = "{{image.gif|my image}}", .output = "<p><img src=\"image.gif\" alt=\"my image\"/></p>" }, - { - .name = "Inline tt", - .input = "Inline {{{tt}}} example {{{here}}}!", - .output = "<p>Inline <tt>tt</tt> example <tt>here</tt>!</p>" - }, #endif }; |