2023-07-29 15:52:36 +00:00
|
|
|
using Diffusers
|
|
|
|
using Documenter
|
|
|
|
|
|
|
|
DocMeta.setdocmeta!(Diffusers, :DocTestSetup, :(using Diffusers); recursive=true)
|
|
|
|
|
|
|
|
makedocs(;
|
|
|
|
modules=[Diffusers],
|
|
|
|
authors="Laurent Fainsin <laurent@fainsin.bzh>",
|
|
|
|
repo="https://github.com/Laurent2916/Diffusers.jl/blob/{commit}{path}#{line}",
|
|
|
|
sitename="Diffusers.jl",
|
|
|
|
format=Documenter.HTML(;
|
2023-08-05 10:31:18 +00:00
|
|
|
prettyurls=true,
|
2023-07-29 15:52:36 +00:00
|
|
|
edit_link="main",
|
|
|
|
assets=String[]
|
|
|
|
),
|
2023-08-04 22:26:43 +00:00
|
|
|
linkcheck=true,
|
2023-07-29 15:52:36 +00:00
|
|
|
pages=[
|
|
|
|
"Home" => "index.md",
|
2023-07-29 15:58:08 +00:00
|
|
|
"Schedulers" => "schedulers.md",
|
|
|
|
"Beta Schedules" => "beta_schedules.md",
|
2023-07-29 15:52:36 +00:00
|
|
|
]
|
|
|
|
)
|
2023-08-04 20:38:56 +00:00
|
|
|
|
|
|
|
deploydocs(
|
|
|
|
repo="github.com/Laurent2916/Diffusers.jl.git",
|
|
|
|
)
|