From 48750fe720c2f4917803535ec56bc52f937764fd Mon Sep 17 00:00:00 2001 From: Linnnus Date: Sun, 4 Feb 2024 09:52:32 +0100 Subject: feat(creole): support headers --- src/creole-test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/creole-test.c') diff --git a/src/creole-test.c b/src/creole-test.c index 3bf820f..23702a1 100644 --- a/src/creole-test.c +++ b/src/creole-test.c @@ -10,12 +10,12 @@ struct { const char *name, *input, *output; } tests[] = { +#if 0 { .name = "Basic paragraph markup", .input = "Basic paragraph test with <, >, & and \"", .output = "

Basic paragraph test with <, >, & and "

" }, -#if 0 { .name = "Simple unordered list", .input = "* list item\n*list item 2", @@ -66,6 +66,7 @@ struct { .input = "{{{\nPreformatted block\n}}}\n{{{Block 2}}}", .output = "
Preformatted block\n
Block 2
" }, +#endif { .name = "h1", .input = "= Header =", @@ -101,6 +102,7 @@ struct { .input = "======= Header =", .output = "

======= Header =

" }, +#if 0 { .name = "Tables", .input = "| A | B |\n| //C// | **D** \\\\ E |", -- cgit v1.2.3