File tree Expand file tree Collapse file tree 1 file changed +10
-25
lines changed
Expand file tree Collapse file tree 1 file changed +10
-25
lines changed Original file line number Diff line number Diff line change @@ -223,34 +223,19 @@ Pkg.status(; mode = PKGMODE_MANIFEST) # hide
223223</details>
224224```
225225
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-
245226``` @eval
246227using TOML
247228using Markdown
248229version = TOML.parse(read("../../Project.toml", String))["version"]
249230name = 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+ """)
256241```
You can’t perform that action at this time.
0 commit comments