diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-09 13:01:36 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-09 13:01:36 +0200 |
commit | 10355a403f57c93a074716c785d588c76de5634c (patch) | |
tree | 46408a8a1198c1bb632f22964a347c01023867bc /tests/thematic_break.rs | |
parent | 433680ae0914da8921c4ee762fdc93e7b70cf9f1 (diff) | |
download | markdown-rs-10355a403f57c93a074716c785d588c76de5634c.tar.gz markdown-rs-10355a403f57c93a074716c785d588c76de5634c.tar.bz2 markdown-rs-10355a403f57c93a074716c785d588c76de5634c.zip |
Add support for indented lines in paragraphs
Diffstat (limited to 'tests/thematic_break.rs')
-rw-r--r-- | tests/thematic_break.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index 833fa6f..1e3fb1e 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -63,7 +63,7 @@ fn thematic_break() { "should not support thematic breaks w/ 4 spaces" ); - // To do: paragraphs. + // To do: trim initial whitespace. // assert_eq!( // micromark("Foo\n ***"), // "<p>Foo\n***</p>", |