You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RELOG/docs/make.jl

26 lines
459 B

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