diff options
Diffstat (limited to 'api_test/cplusplus.cpp')
-rw-r--r-- | api_test/cplusplus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api_test/cplusplus.cpp b/api_test/cplusplus.cpp index b6228a3..5e8f722 100644 --- a/api_test/cplusplus.cpp +++ b/api_test/cplusplus.cpp @@ -8,7 +8,7 @@ void test_cplusplus(test_batch_runner *runner) { static const char md[] = "paragraph\n"; - char *html = cmark_markdown_to_html(md, sizeof(md) - 1); + char *html = cmark_markdown_to_html(md, sizeof(md) - 1, CMARK_OPT_DEFAULT); STR_EQ(runner, html, "<p>paragraph</p>\n", "libcmark works with C++"); free(html); } |