diff options
Diffstat (limited to 'src/construct/heading_atx.rs')
-rw-r--r-- | src/construct/heading_atx.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/heading_atx.rs b/src/construct/heading_atx.rs index 93c57f9..1e5fe3d 100644 --- a/src/construct/heading_atx.rs +++ b/src/construct/heading_atx.rs @@ -75,7 +75,7 @@ pub fn start(tokenizer: &mut Tokenizer, code: Code) -> StateFnResult { /// ```markdown /// |## alpha /// ``` -pub fn before(tokenizer: &mut Tokenizer, code: Code) -> StateFnResult { +fn before(tokenizer: &mut Tokenizer, code: Code) -> StateFnResult { if Code::Char('#') == code { tokenizer.enter(TokenType::HeadingAtxSequence); sequence_open(tokenizer, code, 0) |