diff --git a/library/src/commonTest/kotlin/dev/usbharu/markdown/LexerTest.kt b/library/src/commonTest/kotlin/dev/usbharu/markdown/LexerTest.kt index d9d4328..b6dfdae 100644 --- a/library/src/commonTest/kotlin/dev/usbharu/markdown/LexerTest.kt +++ b/library/src/commonTest/kotlin/dev/usbharu/markdown/LexerTest.kt @@ -805,4 +805,19 @@ class LexerTest { ), actual ) } + + @Test + fun コードブロックかと思ったらアスタリスク() { + val lexer = Lexer() + + val actual = lexer.lex("aiueo ```abcd*a*") + + println(actual) + + assertContentEquals( + listOf( + Text("aiueo"), Whitespace(1, ' '), Text("```abcd") + ), actual + ) + } } \ No newline at end of file