diff options
Diffstat (limited to 'tests/heading_atx.rs')
-rw-r--r-- | tests/heading_atx.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/heading_atx.rs b/tests/heading_atx.rs index 8d4acfd..20da860 100644 --- a/tests/heading_atx.rs +++ b/tests/heading_atx.rs @@ -56,13 +56,13 @@ fn heading_atx() { "should not support a heading for a number sign not followed by whitespace (2)" ); - // To do: phrasing. - // assert_eq!( - // micromark("\\## foo"), - // "<p>## foo</p>", - // "should not support a heading for an escaped number sign" - // ); + assert_eq!( + micromark("\\## foo"), + "<p>## foo</p>", + "should not support a heading for an escaped number sign" + ); + // To do: attention. // assert_eq!( // micromark("# foo *bar* \\*baz\\*"), // "<h1>foo <em>bar</em> *baz*</h1>", |