File tree Expand file tree Collapse file tree 2 files changed +11
-26
lines changed Expand file tree Collapse file tree 2 files changed +11
-26
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ makedocs(sitename = "ModelingToolkit.jl",
25
25
clean = true , doctest = false , linkcheck = true ,
26
26
warnonly = [:docs_block , :missing_docs , :cross_references ],
27
27
linkcheck_ignore = [" https://epubs.siam.org/doi/10.1137/0903023" ],
28
- format = Documenter. HTML (; analytics = " UA-90474609-3 " ,
28
+ format = Documenter. HTML (;
29
29
assets = [" assets/favicon.ico" ],
30
30
mathengine,
31
31
canonical = " https://docs.sciml.ai/ModelingToolkit/stable/" ,
Original file line number Diff line number Diff line change @@ -223,34 +223,19 @@ Pkg.status(; mode = PKGMODE_MANIFEST) # hide
223
223
</details>
224
224
```
225
225
226
- ``` @raw html
227
- You can also download the
228
- <a href="
229
- ```
230
-
231
- ``` @eval
232
- using TOML
233
- using Markdown
234
- version = TOML.parse(read("../../Project.toml", String))["version"]
235
- name = TOML.parse(read("../../Project.toml", String))["name"]
236
- link = Markdown.MD("https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
237
- "/assets/Manifest.toml")
238
- ```
239
-
240
- ``` @raw html
241
- ">manifest</a> file and the
242
- <a href="
243
- ```
244
-
245
226
``` @eval
246
227
using TOML
247
228
using Markdown
248
229
version = TOML.parse(read("../../Project.toml", String))["version"]
249
230
name = TOML.parse(read("../../Project.toml", String))["name"]
250
- link = Markdown.MD("https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
251
- "/assets/Project.toml")
252
- ```
253
-
254
- ``` @raw html
255
- ">project</a> file.
231
+ link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
232
+ "/assets/Manifest.toml"
233
+ link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
234
+ "/assets/Project.toml"
235
+ Markdown.parse("""You can also download the
236
+ [manifest]($link_manifest)
237
+ file and the
238
+ [project]($link_project)
239
+ file.
240
+ """)
256
241
```
You can’t perform that action at this time.
0 commit comments