@@ -72,12 +72,15 @@ L"\begin{align}
7272 [SciML ColPrac: Contributor' s Guide on Collaborative Practices for Community Packages](https: // github. com/ SciML/ ColPrac/ blob/ master/ README. md)
7373 for guidance on PRs, issues, and other matters relating to contributing to SciML.
7474
75+ - See the [SciML Style Guide](https: // github. com/ SciML/ SciMLStyle) for common coding practices and other style decisions.
7576 - There are a few community forums:
7677
77- + the # diffeq-bridged channel in the [Julia Slack](https://julialang.org/slack/)
78- + [JuliaDiffEq](https: // gitter. im/ JuliaDiffEq/ Lobby) on Gitter
79- + on the [Julia Discourse forums](https: // discourse. julialang. org)
80- + see also [SciML Community page](https: // sciml. ai/ community/ )
78+ + The # diffeq-bridged and #sciml-bridged channels in the
79+ [Julia Slack](https: // julialang. org/ slack/ )
80+ + The # diffeq-bridged and #sciml-bridged channels in the
81+ [Julia Zulip](https: // julialang. zulipchat. com/ # narrow/stream/279055-sciml-bridged)
82+ + On the [Julia Discourse forums](https: // discourse. julialang. org)
83+ + See also [SciML Community page](https: // sciml. ai/ community/ )
8184
8285# # Reproducibility
8386
@@ -120,32 +123,19 @@ Pkg.status(; mode = PKGMODE_MANIFEST) # hide
120123</details>
121124```
122125
123- ``` @raw html
124- You can also download the
125- <a href="
126- ```
127-
128126``` @eval
129127using TOML
128+ using Markdown
130129version = TOML.parse(read("../../Project.toml", String))["version"]
131130name = TOML.parse(read("../../Project.toml", String))["name"]
132- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
133- "/assets/Manifest.toml"
134- ```
135-
136- ``` @raw html
137- ">manifest</a> file and the
138- <a href="
139- ```
140-
141- ``` @eval
142- using TOML
143- version = TOML.parse(read("../../Project.toml", String))["version"]
144- name = TOML.parse(read("../../Project.toml", String))["name"]
145- link = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
146- "/assets/Project.toml"
147- ```
148-
149- ``` @raw html
150- ">project</a> file.
131+ link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
132+ "/assets/Manifest.toml"
133+ link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
134+ "/assets/Project.toml"
135+ Markdown.parse("""You can also download the
136+ [manifest]($link_manifest )
137+ file and the
138+ [project]($link_project )
139+ file.
140+ """)
151141```
0 commit comments