Gnuplot.jl/docs/make.jl
Giorgio Calderone 7a647f08e1 Docs updated
2020-04-13 20:34:36 +02:00

19 lines
695 B
Julia

using Documenter, Gnuplot
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"
])