diff options
Diffstat (limited to 'src/creole_test_main.c')
-rw-r--r-- | src/creole_test_main.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/creole_test_main.c b/src/creole_test_main.c index 4f71087..368fc01 100644 --- a/src/creole_test_main.c +++ b/src/creole_test_main.c @@ -181,11 +181,21 @@ struct { .input = "I //love double ~// slashes//!", .output = "<p>I <em>love double // slashes</em>!</p>" }, + { // Not sure what the standard demands. Here's our behavior. + .name = "Empty emphasis", + .input = "////", + .output = "<p>////</p>" + }, { .name = "Bold", .input = "**Strong**", .output = "<p><strong>Strong</strong></p>" }, + { // Not sure what the standard demands. Here's our behavior. + .name = "Empty bold", + .input = "You f****g asshole!", + .output = "<p>You f****g asshole!</p>" + }, { .name = "Escaped bold", .input = "**Strong ~** still strong**", |