mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-24 22:29:55 +00:00
Apply Blue style to docs file
This commit is contained in:
parent
cb53defe9a
commit
fb9ab68cca
1 changed files with 13 additions and 11 deletions
24
docs/make.jl
24
docs/make.jl
|
@ -7,23 +7,25 @@ using Revise
|
||||||
Revise.revise()
|
Revise.revise()
|
||||||
|
|
||||||
makedocs(;
|
makedocs(;
|
||||||
checkdocs = :exports,
|
checkdocs=:exports,
|
||||||
linkcheck = true,
|
linkcheck=true,
|
||||||
sitename = "SequenceVariation.jl",
|
sitename="SequenceVariation.jl",
|
||||||
format = Documenter.HTML(),
|
format=Documenter.HTML(),
|
||||||
modules = [SequenceVariation],
|
modules=[SequenceVariation],
|
||||||
pages = [
|
pages=[
|
||||||
"Home" => "index.md",
|
"Home" => "index.md",
|
||||||
"Working with variants" => "variants.md",
|
"Working with variants" => "variants.md",
|
||||||
"Working with variations" => "variations.md",
|
"Working with variations" => "variations.md",
|
||||||
"Comparing variations" => "compare.md",
|
"Comparing variations" => "compare.md",
|
||||||
"API Reference" => "api.md",
|
"API Reference" => "api.md",
|
||||||
],
|
],
|
||||||
authors = replace(join(Pkg.TOML.parsefile("Project.toml")["authors"], ", "), r" <.*?>" => "" ) * ", The BioJulia Organisation, and other contributors."
|
authors=replace(
|
||||||
|
join(Pkg.TOML.parsefile("Project.toml")["authors"], ", "), r" <.*?>" => ""
|
||||||
|
) * ", The BioJulia Organisation, and other contributors.",
|
||||||
)
|
)
|
||||||
|
|
||||||
deploydocs(
|
deploydocs(;
|
||||||
repo = "github.com/BioJulia/SequenceVariation.jl.git",
|
repo="github.com/BioJulia/SequenceVariation.jl.git",
|
||||||
devbranch = "master",
|
devbranch="master",
|
||||||
push_preview = true,
|
push_preview=true,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue