Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.jl.*.cov
*.jl.mem
Manifest.toml
docs/build
4 changes: 2 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990"

[compat]
DemoCards = "0.4"
Documenter = "0.27"
DemoCards = "0.4, 0.5"
Documenter = "0.27, 1"
3 changes: 3 additions & 0 deletions docs/examples/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Examples

{{{democards}}}
7 changes: 5 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Documenter, DemoCards
using Documenter.Remotes: GitHub
using ImageBase, ImageTransformations, ImageShow
using TestImages
using CoordinateTransformations, Interpolations, Rotations
Expand All @@ -9,15 +10,17 @@ testimage.(["cameraman", "lighthouse"])
examples, postprocess_cb, examples_assets = makedemos("examples")
format = Documenter.HTML(edit_link = "master",
prettyurls = get(ENV, "CI", nothing) == "true",
assets = [examples_assets,])
assets = [examples_assets,], size_threshold = nothing)

makedocs(modules = [ImageTransformations, ImageBase],
repo = GitHub("JuliaImages/ImageTransformations.jl"),
format = format,
sitename = "ImageTransformations",
pages = [
"index.md",
examples,
"reference.md"])
"reference.md"],
warnonly = [:missing_docs])

postprocess_cb()

Expand Down
Loading