-
Notifications
You must be signed in to change notification settings - Fork 9
Fix paragraph handling #23
Copy link
Copy link
Open
Description
Paragraphs are not handled as they should:
test_that("Paragraphs are handled correctly", {
expect_equal(rd_str_to_md("line-one\nline-two"), "line-one\nline-two\n")
# TODO: these tests fail, fix behaviour:
expect_equal(
rd_str_to_md("paragraph-one\n\nparagraph-two"),
"paragraph-one\n\nparagraph-two\n"
)
expect_equal(
rd_str_to_md("paragraph-one\n\n\nparagraph-two"),
"paragraph-one\n\nparagraph-two\n"
)
})Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels