From 1ac68485cbe91ef9636195bfb287b820600c47fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Herg=C3=A8s?= Date: Fri, 3 Oct 2025 20:54:55 +0200 Subject: fix(markdown): stopping paragraph after an inline code --- markdown/ast_paragraph.go | 1 - 1 file changed, 1 deletion(-) (limited to 'markdown') diff --git a/markdown/ast_paragraph.go b/markdown/ast_paragraph.go index 8b34e9f..8590c3e 100644 --- a/markdown/ast_paragraph.go +++ b/markdown/ast_paragraph.go @@ -85,7 +85,6 @@ func paragraph(lxs *lexers, oneLine bool) (*astParagraph, *ParseError) { return nil, err } tree.content = append(tree.content, b) - return tree, nil } } if !lxs.Finished() { -- cgit v1.2.3