From 7883e42c07acbccc16a2f5de5d1b98de364cc1ad Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 15 Jun 2022 13:28:09 +0200 Subject: Update to enable some tests for added constructs --- tests/heading_atx.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/heading_atx.rs') 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"), - // "

## foo

", - // "should not support a heading for an escaped number sign" - // ); + assert_eq!( + micromark("\\## foo"), + "

## foo

", + "should not support a heading for an escaped number sign" + ); + // To do: attention. // assert_eq!( // micromark("# foo *bar* \\*baz\\*"), // "

foo bar *baz*

", -- cgit