diff --git a/Project.toml b/Project.toml index 4ef78c2fa..7fba92c2d 100644 --- a/Project.toml +++ b/Project.toml @@ -16,6 +16,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [compat] DocStringExtensions = "^0.7.0" Highlights = "^0.3.0" -JuDocTemplates = "^0.1.0" +JuDocTemplates = ">= 0.1.0" LiveServer = "^0.1.0" julia = "^1.0.0" diff --git a/test/converter/integration.jl b/test/converter/integration.jl index 8ad3102ee..981c4488f 100644 --- a/test/converter/integration.jl +++ b/test/converter/integration.jl @@ -153,5 +153,5 @@ end @testset "HTML escape" begin # see #151 st = read(joinpath(D, "151.md"), String) - st |> conv == "

aaa \n

\n\"\"\"\n    A\n\nB\n\n# C\n```jldoctest\nD\n```\n\"\"\"\nfunction bar(x, y)\nE\nend\n
\n bbb

\n" + @test st |> conv == "

aaa \n

\n\"\"\"\n    A\n\nB\n\n# C\n```jldoctest\nD\n```\n\"\"\"\nfunction bar(x, y)\nE\nend\n
\n bbb

\n" end diff --git a/test/converter/lx_input.jl b/test/converter/lx_input.jl index 5ec763eb9..e32fee432 100644 --- a/test/converter/lx_input.jl +++ b/test/converter/lx_input.jl @@ -19,5 +19,5 @@ J.JD_PATHS[:scripts] = joinpath(dirname(dirname(pathof(JuDoc))), "test", "_dummi @test occursin("Some string
$(read(joinpath(J.JD_PATHS[:scripts], "s1.jl"), String))
", h) @test occursin("Then maybe
$(read(joinpath(J.JD_PATHS[:scripts], "output", "s1.txt"), String))
", h) - @test occursin("Finally img: done.", h) + @test occursin("Finally img: done.", h) end