From 4705d84137bf722e2ad2b3026f89f348251189e5 Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 31 Dec 2023 23:00:17 +0900 Subject: [PATCH 1/2] remove `strict=true` --- docs/make.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index ccdf86b..0bf891d 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -13,7 +13,6 @@ makedocs(modules=[DiffRules], format = Documenter.HTML( prettyurls = get(ENV, "CI", nothing) == "true" ), - strict=true, checkdocs=:exports, ) From 8ad2072ff076395ce797de5b99e5c40da5cc7944 Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 31 Dec 2023 23:00:59 +0900 Subject: [PATCH 2/2] fix indents in `makedocs` --- docs/make.jl | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 0bf891d..46d8d3a 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -7,13 +7,14 @@ DocMeta.setdocmeta!( recursive=true, ) -makedocs(modules=[DiffRules], - sitename = "DiffRules", - pages = ["Documentation" => "index.md"], - format = Documenter.HTML( - prettyurls = get(ENV, "CI", nothing) == "true" - ), - checkdocs=:exports, +makedocs( + modules=[DiffRules], + sitename = "DiffRules", + pages = ["Documentation" => "index.md"], + format = Documenter.HTML( + prettyurls = get(ENV, "CI", nothing) == "true" + ), + checkdocs=:exports, ) deploydocs(; repo="github.com/JuliaDiff/DiffRules.jl", push_preview=true)