Skip to content

Commit

Permalink
Turn makedocs() errors into warnings
Browse files Browse the repository at this point in the history
Temporary fix -- each package needs to be reviewed for particular
warnings
  • Loading branch information
abhro committed Jul 16, 2024
1 parent 079a161 commit 67b535e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@ makedocs(
],
),
pages=fullpages,
warnonly=[:missing_docs],
# turn errors into warnings
# :cross_references -> AstroImages uses some weird docstring pulling from
# DimensionalData.jl which is outside the scope of this website.
# :citations, :bibliography_block -> integration with DocumenterCitations
# isn't complete enough yet, so this is added piecemeal and the errors
# silenced for now
warnonly=[:missing_docs, :cross_references, :citations, :bibliography_block],
)


Expand Down

0 comments on commit 67b535e

Please sign in to comment.