chore: fix horizontal rule matcher

This commit is contained in:
Steven 2024-01-08 21:00:45 +08:00
parent 5449342016
commit 32d02ba022

View File

@ -26,10 +26,7 @@ func (*HorizontalRuleParser) Match(tokens []*tokenizer.Token) (int, bool) {
if len(tokens) > 3 && tokens[3].Type != tokenizer.Newline {
return 0, false
}
if len(tokens) == 3 {
return 3, true
}
return 4, true
return 3, true
}
func (p *HorizontalRuleParser) Parse(tokens []*tokenizer.Token) (ast.Node, error) {