From 11dd23f59b3b53133f7df63297657c6c91783540 Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 28 Jan 2024 07:04:35 +0800 Subject: [PATCH] chore: tweak link checks --- plugin/gomark/parser/blockquote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gomark/parser/blockquote.go b/plugin/gomark/parser/blockquote.go index 2c419a88..976c1ecf 100644 --- a/plugin/gomark/parser/blockquote.go +++ b/plugin/gomark/parser/blockquote.go @@ -39,7 +39,7 @@ func (*BlockquoteParser) Match(tokens []*tokenizer.Token) (ast.Node, int) { children = append(children, nodes[0]) size += len(row) if index != len(contentRows)-1 { - size += 1 // NewLine. + size++ // NewLine. } }