From 07d0ce1e9128a4598e97ce30a9eb0cfd47c05318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Herg=C3=A8s?= Date: Thu, 25 Dec 2025 16:25:11 +0100 Subject: refactor(markdown): simplify paragraph parsing --- markdown/ast_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'markdown/ast_test.go') diff --git a/markdown/ast_test.go b/markdown/ast_test.go index c0c7fb3..5e5a4f9 100644 --- a/markdown/ast_test.go +++ b/markdown/ast_test.go @@ -69,7 +69,7 @@ func testWithOptions(opt *Option, input, expected string) func(*testing.T) { t.Parallel() got, err := Parse(input, opt) if err != nil { - t.Fatal(err) + t.Fatal(err.Pretty()) } if string(got) != expected { t.Errorf("invalid value, got %s", got) -- cgit v1.2.3