aboutsummaryrefslogtreecommitdiff
path: root/markdown/lexer_test.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-02-05 10:50:12 +0100
committerAnhgelus Morhtuuzh <william@herges.fr>2026-02-05 16:36:41 +0000
commitd6e75145e54854484f2114398ff89787d243608a (patch)
treee79dc8d4cc0a25767dff618405bb8d982800229a /markdown/lexer_test.go
parentcd3bd5dff64fa80c7170d7f5d2d05f610fec36ee (diff)
feat(markdown): interprate callout
Diffstat (limited to 'markdown/lexer_test.go')
-rw-r--r--markdown/lexer_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/lexer_test.go b/markdown/lexer_test.go
index 5736b2a..57f8606 100644
--- a/markdown/lexer_test.go
+++ b/markdown/lexer_test.go
@@ -30,7 +30,7 @@ func TestLex(t *testing.T) {
}
lxs = lex(`> [!NOTE] title
> hey`, opt)
- if lxs.String() != `Lexers[quote(>) literal( ) callout([!) literal(NOTE) callout(]) literal( title) break({\n}) quote(>) literal( hey) ]` {
+ if lxs.String() != `Lexers[quote(>) callout([!) literal(NOTE) callout(]) literal( title) break({\n}) quote(>) literal( hey) ]` {
t.Errorf("invalid lex, got %s", lxs)
}
}