diff options
| author | William Hergès <william@herges.fr> | 2025-10-03 20:54:55 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-10-03 20:54:55 +0200 |
| commit | 1ac68485cbe91ef9636195bfb287b820600c47fb (patch) | |
| tree | 5d6afd46e1f00be956e4c95b0eef374fbbc325e2 | |
| parent | 97045512306ed91b690a0d4c20bbb8fe84d7dbfe (diff) | |
fix(markdown): stopping paragraph after an inline code
| -rw-r--r-- | markdown/ast_paragraph.go | 1 |
1 files changed, 0 insertions, 1 deletions
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() { |
