mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-07 16:18:51 -06:00
Update docs
This commit is contained in:
26
docs/make.jl
Normal file
26
docs/make.jl
Normal file
@@ -0,0 +1,26 @@
|
||||
using Documenter
|
||||
using RELOG
|
||||
using BetterFileWatching
|
||||
|
||||
function make()
|
||||
makedocs(
|
||||
sitename="RELOG",
|
||||
pages=[
|
||||
"Home" => "index.md",
|
||||
"User guide" => [
|
||||
"problem.md",
|
||||
"format.md",
|
||||
]
|
||||
],
|
||||
format = Documenter.HTML(
|
||||
assets=["assets/custom.css"],
|
||||
)
|
||||
)
|
||||
end
|
||||
|
||||
function watch()
|
||||
make()
|
||||
watch_folder("src") do event
|
||||
make()
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user