Update dependencies; switch to Documenter.jl

This commit is contained in:
2022-08-26 13:04:47 -05:00
parent 92d30460b9
commit 19a34fb5d2
23 changed files with 318 additions and 169 deletions

19
docs/make.jl Normal file
View File

@@ -0,0 +1,19 @@
using Documenter, RELOG
function make()
makedocs(
sitename="RELOG",
pages=[
"Home" => "index.md",
"usage.md",
"format.md",
"reports.md",
"model.md",
],
format = Documenter.HTML(
assets=["assets/custom.css"],
)
)
end
make()