From dc8fba024a42865f7f02def6c64846749abe690e Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Thu, 8 Jul 2021 12:29:08 +0200 Subject: [PATCH] Update src/Literate.jl --- src/Literate.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Literate.jl b/src/Literate.jl index 70a54e5..6bb15a7 100644 --- a/src/Literate.jl +++ b/src/Literate.jl @@ -440,7 +440,7 @@ function markdown(inputfile, outputdir=pwd(); config::Dict=Dict(), kwargs...) iocode = IOBuffer() codefence = config["codefence"]::Pair write(iocode, codefence.first) - # make sure the code block is finalized if we are printing to ```@example + # make sure the code block is finalized if we are printing to ```@example # (or ````@example, any number of backticks >= 3 works) if chunk.continued && startswith(codefence.first, r"`{3,}@example") && config["documenter"]::Bool write(iocode, "; continued = true")