Skip to content

Commit

Permalink
Increase HTML page size threshold for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mhauru committed Aug 21, 2024
1 parent a0a8761 commit a8812e9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ DocMeta.setdocmeta!(DynamicPPL, :DocTestSetup, :(using DynamicPPL); recursive=tr

makedocs(;
sitename="DynamicPPL",
format=Documenter.HTML(),
# The API index.html page is fairly large, and violates the default HTML page size
# threshold of 200KiB, so we double that.
format=Documenter.HTML(; size_threshold=2^10 * 400),
modules=[DynamicPPL],
pages=[
"Home" => "index.md",
Expand Down

0 comments on commit a8812e9

Please sign in to comment.