File tree Expand file tree Collapse file tree 3 files changed +16
-24
lines changed Expand file tree Collapse file tree 3 files changed +16
-24
lines changed Original file line number Diff line number Diff line change 3
3
pull_request :
4
4
branches :
5
5
- main
6
+ paths-ignore :
7
+ - ' docs/**'
6
8
push :
7
9
branches :
8
10
- main
11
+ paths-ignore :
12
+ - ' docs/**'
9
13
jobs :
10
14
test :
11
15
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ makedocs(sitename = "LinearSolve.jl",
12
12
authors = " Chris Rackauckas" ,
13
13
modules = [LinearSolve, LinearSolve. SciMLBase],
14
14
clean = true , doctest = false , linkcheck = true ,
15
+ warnonly = [:docs_block , :missing_docs ],
15
16
format = Documenter. HTML (assets = [" assets/favicon.ico" ],
16
17
canonical = " https://docs.sciml.ai/LinearSolve/stable/" ),
17
18
pages = pages)
Original file line number Diff line number Diff line change @@ -84,32 +84,19 @@ Pkg.status(; mode = PKGMODE_MANIFEST) # hide
84
84
</details>
85
85
```
86
86
87
- ``` @raw html
88
- You can also download the
89
- <a href="
90
- ```
91
-
92
87
``` @eval
93
88
using TOML
89
+ using Markdown
94
90
version = TOML.parse(read("../../Project.toml", String))["version"]
95
91
name = TOML.parse(read("../../Project.toml", String))["name"]
96
- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
97
- "/assets/Manifest.toml"
98
- ```
99
-
100
- ``` @raw html
101
- ">manifest</a> file and the
102
- <a href="
103
- ```
104
-
105
- ``` @eval
106
- using TOML
107
- version = TOML.parse(read("../../Project.toml", String))["version"]
108
- name = TOML.parse(read("../../Project.toml", String))["name"]
109
- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
110
- "/assets/Project.toml"
111
- ```
112
-
113
- ``` @raw html
114
- ">project</a> file.
92
+ link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
93
+ "/assets/Manifest.toml"
94
+ link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
95
+ "/assets/Project.toml"
96
+ Markdown.parse("""You can also download the
97
+ [manifest]($link_manifest)
98
+ file and the
99
+ [project]($link_project)
100
+ file.
101
+ """)
115
102
```
You can’t perform that action at this time.
0 commit comments