File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ makedocs(sitename = "ModelingToolkit.jl",
23
23
authors = " Chris Rackauckas" ,
24
24
modules = [ModelingToolkit],
25
25
clean = true , doctest = false , linkcheck = true ,
26
+ warnonly = [:docs_block , :missing_docs , :cross_references ],
26
27
linkcheck_ignore = [" https://epubs.siam.org/doi/10.1137/0903023" ],
27
28
format = Documenter. HTML (; analytics = " UA-90474609-3" ,
28
29
assets = [" assets/favicon.ico" ],
Original file line number Diff line number Diff line change @@ -230,10 +230,11 @@ You can also download the
230
230
231
231
``` @eval
232
232
using TOML
233
+ using Markdown
233
234
version = TOML.parse(read("../../Project.toml", String))["version"]
234
235
name = TOML.parse(read("../../Project.toml", String))["name"]
235
- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
236
- "/assets/Manifest.toml"
236
+ link = Markdown.MD( "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
237
+ "/assets/Manifest.toml")
237
238
```
238
239
239
240
``` @raw html
@@ -243,10 +244,11 @@ link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
243
244
244
245
``` @eval
245
246
using TOML
247
+ using Markdown
246
248
version = TOML.parse(read("../../Project.toml", String))["version"]
247
249
name = TOML.parse(read("../../Project.toml", String))["name"]
248
- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
249
- "/assets/Project.toml"
250
+ link = Markdown.MD( "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
251
+ "/assets/Project.toml")
250
252
```
251
253
252
254
``` @raw html
You can’t perform that action at this time.
0 commit comments