mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-06 07:48:50 -06:00
26 lines
459 B
Julia
26 lines
459 B
Julia
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 |