diff --git a/docs/make.jl b/docs/make.jl index e2627ea..450ae47 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,5 +1,14 @@ using Documenter, Example -makedocs(modules = [Example], sitename = "Example.jl") +makedocs(modules = [Example], + sitename = "Example.jl", + format = Documenter.HTML() + ) -deploydocs(repo = "github.com/JuliaLang/Example.jl.git") +deploydocs( + repo = "github.com/JuliaLang/Example.jl.git", + target = "build", + deps = nothing, + make = nothing, + push_preview = true, +)