Gnuplot.jl/docs/make.jl
Giorgio Calderone 6df834bb88 Docs updated
2020-04-25 20:41:09 +02:00

20 lines
724 B
Julia

using Documenter, Gnuplot
empty!(Gnuplot.options.mime)
makedocs(sitename="Gnuplot.jl",
authors = "Giorgio Calderone",
#format = Documenter.HTML(prettyurls = false), # uncomment for local use, comment for deployment
modules=[Gnuplot],
pages = [
"Home" => "index.md",
"Installation" => "install.md",
"Basic usage" => "basic.md",
"Advanced usage" => "advanced.md",
"Package options" => "options.md",
"Style guide" => "style.md",
"Gnuplot terminals" => "terminals.md",
"Plot recipes" => "recipes.md",
"Examples" => "examples.md",
"API" => "api.md"
])