diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-09-30 21:00:51 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-09-30 21:00:51 +0200 |
| commit | 3d3ccdec245b5a5d1c1f01d0b6972959332c882e (patch) | |
| tree | ef4e94c4711590ff85bc326bbed848740ef14584 /mardown/ast_modifier.go | |
| parent | e20acb05fd33b8fbcfafee4b72734224093c2d20 (diff) | |
fix(markdown): wrong return in lexer next
Diffstat (limited to 'mardown/ast_modifier.go')
| -rw-r--r-- | mardown/ast_modifier.go | 2 |
1 files changed, 1 insertions, 1 deletions
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</%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 |
