mirror of
https://github.com/Laurent2916/Diffusers.jl.git
synced 2024-11-08 14:38:58 +00:00
30 lines
746 B
Julia
30 lines
746 B
Julia
using Diffusers
|
|
using Documenter
|
|
using DocumenterCitations
|
|
|
|
DocMeta.setdocmeta!(Diffusers, :DocTestSetup, :(using Diffusers); recursive=true)
|
|
bib = CitationBibliography(joinpath(@__DIR__, "src", "refs.bib"))
|
|
|
|
makedocs(bib;
|
|
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(;
|
|
prettyurls=true,
|
|
edit_link="master",
|
|
assets=String[]
|
|
),
|
|
linkcheck=true,
|
|
pages=[
|
|
"Home" => "index.md",
|
|
"Schedulers" => "schedulers.md",
|
|
"Beta Schedules" => "beta_schedules.md",
|
|
"References" => "references.md",
|
|
]
|
|
)
|
|
|
|
deploydocs(
|
|
repo="github.com/Laurent2916/Diffusers.jl.git",
|
|
)
|