diff --git a/test/converter/markdown3.jl b/test/converter/markdown3.jl index 15202c70f..7bbf5729e 100644 --- a/test/converter/markdown3.jl +++ b/test/converter/markdown3.jl @@ -134,3 +134,13 @@ end @test blocks[4].name == :CODE_INLINE @test J.content(blocks[4]) == "single" end + +@testset "\\ and \`" begin # see issue 203 + st = raw"""The `"Hello\n"` after the `readall` command is a returned value, whereas the `Hello` after the `run` command is printed output.""" * J.EOS + st |> seval + @test isapproxstr(st |> seval, raw""" +
The "Hello\n"
after
+ the readall
command is a returned value,
+ whereas the Hello
after the run
+ command is printed output.