Weave.jl/doc/make.jl

14 lines
333 B
Julia
Raw Normal View History

using Documenter, Weave
2019-03-04 13:51:27 +01:00
cd("doc")
2019-03-04 12:23:37 +01:00
makedocs( modules = Weave, sitename="Weave.jl",
2019-03-04 12:03:00 +01:00
pages = ["index.md", "getting_started.md", "usage.md",
"publish.md", "chunk_options.md", "notebooks.md",
"function_index.md"]
)
2018-01-07 11:31:06 +01:00
include("make_examples.jl")
2019-03-04 13:28:09 +01:00
deploydocs(
repo = "github.com/mpastell/Weave.jl.git",
target = "build"
)