From ce6a2da035dc045510157a0eeefaebf56f0e8958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Herg=C3=A8s?= Date: Fri, 3 Oct 2025 22:15:12 +0200 Subject: fix(markdown): external source never stopped --- markdown/lexer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'markdown/lexer.go') diff --git a/markdown/lexer.go b/markdown/lexer.go index a02ec54..651e3aa 100644 --- a/markdown/lexer.go +++ b/markdown/lexer.go @@ -25,7 +25,7 @@ type lexer struct { Value string } -func (l *lexer) String() string { +func (l lexer) String() string { return fmt.Sprintf("%s(%s)", l.Type, l.Value) } -- cgit v1.2.3