diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 12:16:51 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 12:16:58 +0200 |
commit | faca28020f4894bdfcf5a4b164ebbc75864d8776 (patch) | |
tree | 93377413ae8c355e2d804f7e700241693b228e70 /tests/thematic_break.rs | |
parent | e1cae8c705e66669d043f5269e9f58c09c7b0eaa (diff) | |
download | markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.tar.gz markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.tar.bz2 markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.zip |
Add support for attention (emphasis, strong)
Diffstat (limited to '')
-rw-r--r-- | tests/thematic_break.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index 06b1193..03f1b7a 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -117,12 +117,11 @@ fn thematic_break() { "should not support thematic breaks w/ other characters (3)" ); - // To do: attention. - // assert_eq!( - // micromark(" *-*"), - // "<p><em>-</em></p>", - // "should not support thematic breaks w/ mixed markers" - // ); + assert_eq!( + micromark(" *-*"), + "<p><em>-</em></p>", + "should not support thematic breaks w/ mixed markers" + ); // To do: lists. // assert_eq!( |