From a4f61e832fa9f99e04d05ab4b4768538ba076c84 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 8 Aug 2015 13:10:10 -0700 Subject: Treat line ending with EOF as ending with newline. Closes #71. Added a test to api_test. --- api_test/main.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'api_test') diff --git a/api_test/main.c b/api_test/main.c index 7c3ac1d..bcfbb6d 100644 --- a/api_test/main.c +++ b/api_test/main.c @@ -677,6 +677,7 @@ line_endings(test_batch_runner *runner) STR_EQ(runner, html, "\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, @@ -684,6 +685,14 @@ line_endings(test_batch_runner *runner) STR_EQ(runner, html, "

line
\nline

\n", "crlf endings with CMARK_OPT_HARDBREAKS"); free(html); + + static const char no_line_ending[] = "```\nline\n```"; + html = cmark_markdown_to_html(no_line_ending, + sizeof(no_line_ending) - 1, + CMARK_OPT_DEFAULT); + STR_EQ(runner, html, "
line\n
\n", + "fenced code block with no final newline"); + free(html); } static void -- cgit v1.2.3