Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a first tutorial #234

Merged
merged 2 commits into from
Jul 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ using Catalyst, ModelingToolkit
# ))
# push!(r, Documenter.Utilities.JSDependencies.Snippet(
# ["jquery", "katex", "mhchem", "katex-auto-render"],
# ["\$", "katex", "renderMathInElement"],
# ["\$", "katex", "mhchem", "renderMathInElement"],
# """
# \$(document).ready(function() {
# renderMathInElement(
Expand All @@ -35,13 +35,14 @@ using Catalyst, ModelingToolkit
makedocs(
sitename = "Catalyst.jl",
authors = "Samuel Isaacson",
format = Documenter.HTML(prettyurls = (get(ENV, "CI", nothing) == "true")),
format = Documenter.HTML(mathengine=Documenter.Writers.HTMLWriter.MathJax(), prettyurls = (get(ENV, "CI", nothing) == "true")),
modules = [Catalyst,ModelingToolkit],
doctest = false,
clean = true,
pages = Any[
"Home" => "index.md",
"Tutorials" => Any[
"tutorials/using_catalyst.md",
"tutorials/basics.md",
"tutorials/models.md",
"tutorials/basic_examples.md",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/api/catalyst_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ as here `X` is never defined as either a species or parameter.
```@docs
@reaction_network
make_empty_network
@add_reactions
ModelingToolkit.Reaction
ModelingToolkit.ReactionSystem
```
Expand All @@ -55,6 +54,7 @@ dependants

## Functions to extend a Network
```@docs
@add_reactions
addspecies!
addparam!
addreaction!
Expand Down
981 changes: 981 additions & 0 deletions docs/src/assets/birthdeath_cle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
289 changes: 289 additions & 0 deletions docs/src/assets/repressilator.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading