Weave.jl/doc/make.jl

24 lines
475 B
Julia
Raw Normal View History

using Documenter, Weave
2020-03-04 11:20:03 +01:00
makedocs(
modules = [Weave],
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
sitename = "Weave.jl",
pages = [
"index.md",
"getting_started.md",
"usage.md",
"publish.md",
"chunk_options.md",
"notebooks.md",
"function_index.md",
],
2019-03-04 12:03:00 +01:00
)
2018-01-07 11:31:06 +01:00
include("make_examples.jl")
deploydocs(
repo = "github.com/mpastell/Weave.jl.git",
2020-03-04 11:20:03 +01:00
push_preview = true,
)