Update docs

This commit is contained in:
2025-03-28 11:39:16 -05:00
parent f82a1d121d
commit 40947190ad
16 changed files with 1026 additions and 0 deletions

26
docs/make.jl Normal file
View 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