- Commit
- cf2f192486c85b6c7902d84dada3411e958c18b8
- Parent
- 8f485e954ba01432f78a191db97c2e62164b24cb
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Added api_test case for #68.
Currently fails.
My personal build of CMark ✏️
Added api_test case for #68.
Currently fails.
1 file changed, 7 insertions, 0 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | api_test/main.c | 7 | 7 | 0 |
diff --git a/api_test/main.c b/api_test/main.c @@ -677,6 +677,13 @@ line_endings(test_batch_runner *runner) STR_EQ(runner, html, "<ul>\n<li>a</li>\n<li>b</li>\n<li>c</li>\n<li>d</li>\n</ul>\n", "list with different line endings"); free(html); + static const char crlf_lines[] = "line\r\nline\r\n"; + html = cmark_markdown_to_html(crlf_lines, + sizeof(crlf_lines) - 1, + CMARK_OPT_DEFAULT | CMARK_OPT_HARDBREAKS); + STR_EQ(runner, html, "<p>line<br />\nline</p>\n", + "crlf endings with CMARK_OPT_HARDBREAKS"); + free(html); } static void