From fb9ab68cca925e138fd9dc1ebbccdb23c6257f89 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 3 Jan 2023 21:59:31 -0600 Subject: [PATCH] Apply Blue style to docs file --- docs/make.jl | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 73c5950..0a8a2a8 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -7,23 +7,25 @@ using Revise Revise.revise() makedocs(; - checkdocs = :exports, - linkcheck = true, - sitename = "SequenceVariation.jl", - format = Documenter.HTML(), - modules = [SequenceVariation], - pages = [ + checkdocs=:exports, + linkcheck=true, + sitename="SequenceVariation.jl", + format=Documenter.HTML(), + modules=[SequenceVariation], + pages=[ "Home" => "index.md", "Working with variants" => "variants.md", "Working with variations" => "variations.md", "Comparing variations" => "compare.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( - repo = "github.com/BioJulia/SequenceVariation.jl.git", - devbranch = "master", - push_preview = true, +deploydocs(; + repo="github.com/BioJulia/SequenceVariation.jl.git", + devbranch="master", + push_preview=true, )