@@ -20,12 +20,15 @@ Pkg.add("LabelledArrays")
20
20
[ SciML ColPrac: Contributor's Guide on Collaborative Practices for Community Packages] ( https://github.com/SciML/ColPrac/blob/master/README.md )
21
21
for guidance on PRs, issues, and other matters relating to contributing to SciML.
22
22
23
+ - See the [ SciML Style Guide] ( https://github.com/SciML/SciMLStyle ) for common coding practices and other style decisions.
23
24
- There are a few community forums:
24
25
25
- + the #diffeq-bridged channel in the [ Julia Slack] ( https://julialang.org/slack/ )
26
- + [ JuliaDiffEq] ( https://gitter.im/JuliaDiffEq/Lobby ) on Gitter
27
- + on the [ Julia Discourse forums] ( https://discourse.julialang.org )
28
- + see also [ SciML Community page] ( https://sciml.ai/community/ )
26
+ + The #diffeq-bridged and #sciml-bridged channels in the
27
+ [ Julia Slack] ( https://julialang.org/slack/ )
28
+ + The #diffeq-bridged and #sciml-bridged channels in the
29
+ [ Julia Zulip] ( https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged )
30
+ + On the [ Julia Discourse forums] ( https://discourse.julialang.org )
31
+ + See also [ SciML Community page] ( https://sciml.ai/community/ )
29
32
30
33
## Reproducibility
31
34
@@ -68,32 +71,19 @@ Pkg.status(; mode = PKGMODE_MANIFEST) # hide
68
71
</details>
69
72
```
70
73
71
- ``` @raw html
72
- You can also download the
73
- <a href="
74
- ```
75
-
76
- ``` @eval
77
- using TOML
78
- version = TOML.parse(read("../../Project.toml", String))["version"]
79
- name = TOML.parse(read("../../Project.toml", String))["name"]
80
- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
81
- "/assets/Manifest.toml"
82
- ```
83
-
84
- ``` @raw html
85
- ">manifest</a> file and the
86
- <a href="
87
- ```
88
-
89
74
``` @eval
90
75
using TOML
76
+ using Markdown
91
77
version = TOML.parse(read("../../Project.toml", String))["version"]
92
78
name = TOML.parse(read("../../Project.toml", String))["name"]
93
- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
94
- "/assets/Project.toml"
95
- ```
96
-
97
- ``` @raw html
98
- ">project</a> file.
99
- ```
79
+ link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
80
+ "/assets/Manifest.toml"
81
+ link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
82
+ "/assets/Project.toml"
83
+ Markdown.parse("""You can also download the
84
+ [manifest]($link_manifest)
85
+ file and the
86
+ [project]($link_project)
87
+ file.
88
+ """)
89
+ ```
0 commit comments