diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index c139b5f..c4186c6 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -3,9 +3,13 @@ on:
pull_request:
branches:
- master
+ paths-ignore:
+ - 'docs/**'
push:
branches:
- master
+ paths-ignore:
+ - 'docs/**'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
diff --git a/docs/Project.toml b/docs/Project.toml
index 3e66f10..e8f71de 100644
--- a/docs/Project.toml
+++ b/docs/Project.toml
@@ -8,13 +8,14 @@ LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MosekTools = "1ec41992-ff65-5c91-ac43-2df89e9693a4"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
+PolyChaos = "8d666b04-775d-5f6e-b778-5ac7c70f65a3"
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
[compat]
AbstractTrees = "0.3, 0.4"
DifferentialEquations = "6.15, 7"
-Documenter = "0.27"
+Documenter = "1"
GR = "0.46, 0.72"
JuMP = "0.2, 1"
LaTeXStrings = "1.0"
diff --git a/docs/make.jl b/docs/make.jl
index 0c029a5..e596028 100644
--- a/docs/make.jl
+++ b/docs/make.jl
@@ -12,15 +12,8 @@ makedocs(sitename = "PolyChaos.jl",
linkcheck_ignore = [
"https://www.sciencedirect.com/science/article/pii/S235246771830105X",
],
- strict = [
- :doctest,
- :linkcheck,
- :parse_error,
- # Other available options are
- # :autodocs_block, :cross_references, :docs_block, :eval_block, :example_block, :footnote, :meta_block, :missing_docs, :setup_block
- ],
- format = Documenter.HTML(analytics = "UA-90474609-3",
- assets = ["assets/favicon.ico"],
+ warnonly = [:setup_block, :missing_docs, :example_block],
+ format = Documenter.HTML(assets = ["assets/favicon.ico"],
canonical = "https://docs.sciml.ai/PolyChaos/stable/"),
modules = [PolyChaos],
authors = "tillmann.muehlpfordt@kit.edu",
diff --git a/docs/src/index.md b/docs/src/index.md
index f983403..a269ea7 100644
--- a/docs/src/index.md
+++ b/docs/src/index.md
@@ -174,32 +174,19 @@ Pkg.status(; mode = PKGMODE_MANIFEST) # hide
```
-```@raw html
-You can also download the
-manifest file and the
-project file.
+link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
+ "/assets/Manifest.toml"
+link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
+ "/assets/Project.toml"
+Markdown.parse("""You can also download the
+[manifest]($link_manifest)
+file and the
+[project]($link_project)
+file.
+""")
```