## Modified from ## https://github.com/SciML/SciMLTutorials.jl/blob/master/src/SciMLTutorials.jl const repo_directory = joinpath(@__DIR__,"..") const cssfile = joinpath(@__DIR__, "..", "templates", "skeleton_css.css") const htmlfile = joinpath(@__DIR__, "..", "templates", "bootstrap.tpl") const latexfile = joinpath(@__DIR__, "..", "templates", "julia_tex.tpl") # do we build the file? function build_file(jmdfile, outfile; force=false) force && return true !isfile(outfile) && return true mtime(outfile) < mtime(jmdfile) && return true return false end # build list ⊂ (:script,:html,:weave_html, :pdf,:github,:notebook,:pluto) function weave_file(folder, file; build_list=(:html,), force=false, kwargs...) jmd_dir = isdir(folder) ? folder : joinpath(repo_directory,"CwJ",folder) jmd_file = joinpath(jmd_dir, file) bnm = replace(basename(jmd_file), r".jmd$" => "") build_dir = joinpath(repo_directory, "docs", "build") if !force #testfile = joinpath(repo_directory, "html", folder, bnm*".html") testfile = joinpath(build_dir, folder, bnm*".html") if isfile(testfile) && (mtime(testfile) >= mtime(tmp)) return end force=true end Pkg.activate(dirname(jmd_dir)) Pkg.instantiate() args = Dict{Symbol,String}(:folder=>folder,:file=>file) if :script ∈ build_list println("Building Script") dir = joinpath(repo_directory,"script",folder) isdir(dir) || mkpath(dir) ext = ".jl" outfile = joinpath(dir, bnm*ext) build_file(file, outfile, force=force) || return nothing args[:doctype] = "script" tangle(tmp;out_path=dir) end # use Pluto to build html pages if :html ∈ build_list ## use jmd -> pluto notebook -> generate_html println("Building HTML: $file") cd(jmd_dir) dir = joinpath(build_dir, folder) isdir(dir) || mkpath(dir) ext = ".html" outfile = joinpath(dir, bnm*ext) o = build_file(file, outfile, force=force) o || return nothing header = CalculusWithJulia.WeaveSupport.header_cmd footer = CalculusWithJulia.WeaveSupport.footer_cmd(bnm, folder) html_content = md2html(file, header_cmds=(header,), footer_cmds=(footer,) ) open(outfile, "w") do io write(io, html_content) end end ## old html generation if :weave_html ∈ build_list println("Building HTML for $file") dir = joinpath(build_dir, folder) isdir(dir) || mkpath(dir) figdir = joinpath(jmd_dir,"figures") htmlfigdir = joinpath(dir, "figures") if isdir(figdir) isdir(htmlfigdir) && rm(htmlfigdir, recursive=true) cp(figdir, htmlfigdir) end ext = ".html" outfile = joinpath(dir, bnm*ext) build_file(file, outfile, force=force) || return nothing Weave.set_chunk_defaults!(:wrap=>false) args[:doctype] = "html" # override printing for Polynomials, SymPy with weave 𝐦 = Core.eval(@__MODULE__, :(module $(gensym(:WeaveHTMLTestModule)) end)) Core.eval(𝐦, quote using SymPy, Polynomials function Base.show(io::IO, ::MIME"text/html", x::T) where {T <: SymPy.SymbolicObject} #write(io, "