}
}
+CX_TEST(test_editor_load_markdown_list2) {
+ CX_TEST_DO {
+ CX_TEST_CALL_SUBROUTINE(test_editor_markdown_load_get, cx_mutstr("Ordered List:\n\n1. first\n2. second\n3. third\n\nend"));
+ }
+}
+
CX_TEST(test_editor_load_markdown_span1) {
CX_TEST_DO {
CX_TEST_CALL_SUBROUTINE(test_editor_markdown_load_get, cx_mutstr("Text **bold** and _underline_\n\nText *italic*\n"));
CX_TEST(test_editor_load_markdown_para1);
CX_TEST(test_editor_load_markdown_heading_para);
CX_TEST(test_editor_load_markdown_list1);
+CX_TEST(test_editor_load_markdown_list2);
CX_TEST(test_editor_load_markdown_span1);
CX_TEST(test_editor_load_markdown_code1);
CX_TEST(test_editor_load_markdown_link);
cx_test_register(suite, test_editor_load_markdown_para1);
cx_test_register(suite, test_editor_load_markdown_heading_para);
cx_test_register(suite, test_editor_load_markdown_list1);
+ cx_test_register(suite, test_editor_load_markdown_list2);
cx_test_register(suite, test_editor_load_markdown_span1);
cx_test_register(suite, test_editor_load_markdown_code1);
cx_test_register(suite, test_editor_load_markdown_link);