From 5522d4e401aac915cb2c8ce7a7347f66a3584c27 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Tue, 17 Apr 2018 12:17:50 +0200 Subject: [PATCH] call fixlinks in Examples.script --- src/Examples.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Examples.jl b/src/Examples.jl index 2cc7fbe..3d295c0 100644 --- a/src/Examples.jl +++ b/src/Examples.jl @@ -131,6 +131,9 @@ function script(inputfile, outputdir; preprocess = identity, postprocess = ident content = replace(content, repl) end + # fix urls to point to correct file + content = fixlinks(content) + # create the script file chunks = parse(content) ioscript = IOBuffer()