mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-14 22:33:14 +00:00
1bcd7c344c
- API autodocs. - Inline links for documenter. - Logo. - Badges.
21 lines
579 B
Julia
21 lines
579 B
Julia
using Pkg
|
|
using Documenter, XAM
|
|
|
|
makedocs(
|
|
format = Documenter.HTML(
|
|
edit_link = "develop"
|
|
),
|
|
modules = [XAM, XAM.SAM, XAM.BAM],
|
|
sitename = "XAM.jl",
|
|
pages = [
|
|
"Home" => "index.md",
|
|
"SAM and BAM" => "man/hts-files.md",
|
|
"API Reference" => "man/api.md"
|
|
],
|
|
authors = replace(join(Pkg.TOML.parsefile("Project.toml")["authors"], ", "), r" <.*?>" => "" ) * ", The BioJulia Organisation, and other contributors."
|
|
)
|
|
deploydocs(
|
|
repo = "github.com/BioJulia/XAM.jl.git",
|
|
devbranch = "develop",
|
|
push_preview = true
|
|
)
|