From 3d3ccdec245b5a5d1c1f01d0b6972959332c882e Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Tue, 30 Sep 2025 21:00:51 +0200 Subject: fix(markdown): wrong return in lexer next --- mardown/ast_modifier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mardown/ast_modifier.go') diff --git a/mardown/ast_modifier.go b/mardown/ast_modifier.go index e505aef..b9e53a1 100644 --- a/mardown/ast_modifier.go +++ b/mardown/ast_modifier.go @@ -39,7 +39,7 @@ func (a *astModifier) Eval() (template.HTML, error) { return template.HTML(fmt.Sprintf("<%s>%s", a.tag, content, a.tag)), nil } -func modifier(lxs lexers) (*astModifier, error) { +func modifier(lxs *lexers) (*astModifier, error) { current := lxs.Current().Value mod := modifierDetect(current) modInside := mod -- cgit v1.2.3