Skip to content

Commit 35f0aec

Browse files
committed
up
1 parent 4380871 commit 35f0aec

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

docs/src/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Catalyst.jl API
1+
# [Catalyst.jl API](@id api)
22
```@meta
33
CurrentModule = Catalyst
44
```

docs/src/index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,22 +104,23 @@ New users are recommended to start with either the [Introduction to Catalyst and
104104
This documentation contains code which is dynamically run whenever it is built. If you copy the code and run it in your Julia environment it should work. The exact Julia environment that is used in this documentation can be found [here](@ref doc_home_reproducibility).
105105

106106
For most code blocks in this documentation, the output of the last line of code is printed at the of the block, e.g.
107-
```@example home1
107+
```@example home_display
108108
1 + 2
109109
```
110110
and
111-
```@example home1
111+
```@example home_display
112+
using Catalyst # hide
112113
@reaction_network begin
113114
(p,d), 0 <--> X
114115
end
115116
```
116117
However, in some situations (e.g. when output is extensive, or irrelevant to what is currently being described) we have disabled this, e.g. like here:
117-
```@example home1
118+
```@example home_display
118119
1 + 2
119120
nothing # hide
120121
```
121122
and here:
122-
```@example home1
123+
```@example home_display
123124
@reaction_network begin
124125
(p,d), 0 <--> X
125126
end

0 commit comments

Comments
 (0)