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_paragraph.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mardown/ast_paragraph.go') diff --git a/mardown/ast_paragraph.go b/mardown/ast_paragraph.go index 3c8f985..24b7057 100644 --- a/mardown/ast_paragraph.go +++ b/mardown/ast_paragraph.go @@ -31,7 +31,7 @@ func (a *astParagraph) Eval() (template.HTML, error) { return template.HTML(fmt.Sprintf("

%s

", content)), nil } -func paragraph(lxs lexers, oneLine bool) (*astParagraph, error) { +func paragraph(lxs *lexers, oneLine bool) (*astParagraph, error) { tree := new(astParagraph) tree.oneLine = oneLine maxBreak := 2 -- cgit v1.2.3