Weave.jl/doc/make.jl

14 lines
333 B
Julia

using Documenter, Weave
cd("doc")
makedocs( modules = Weave, sitename="Weave.jl",
pages = ["index.md", "getting_started.md", "usage.md",
"publish.md", "chunk_options.md", "notebooks.md",
"function_index.md"]
)
include("make_examples.jl")
deploydocs(
repo = "github.com/mpastell/Weave.jl.git",
target = "build"
)