From 07944097100826b6e52e3c061ddcb1daff2eda84 Mon Sep 17 00:00:00 2001 From: Torkel Date: Tue, 16 Apr 2024 16:15:49 -0400 Subject: [PATCH] save progress --- .../introduction_to_catalyst/advanced_intro_to_catalyst.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/introduction_to_catalyst/advanced_intro_to_catalyst.md b/docs/src/introduction_to_catalyst/advanced_intro_to_catalyst.md index 7c2d1084b3..5a4eb4e25d 100644 --- a/docs/src/introduction_to_catalyst/advanced_intro_to_catalyst.md +++ b/docs/src/introduction_to_catalyst/advanced_intro_to_catalyst.md @@ -458,9 +458,9 @@ A `ReactionSystem`'s primary (time) independent variable can be retrieved using Currently, Catalyst primarily supports spatial modelling on discrete spatial structures, where spatial independent variables are not used. Hence, this feature is not required for any current Catalyst feature. -### [Variable and reaction metadata](@id advanced_intro_to_catalyst_metadata) +## [Variable and reaction metadata](@id advanced_intro_to_catalyst_metadata) -#### [Variable metadata](@id advanced_intro_to_catalyst_metadata_variables) +### [Variable metadata](@id advanced_intro_to_catalyst_metadata_variables) It is possible to attach metadata to symbolic variables. The use of this depend on the metadata, and some may simply be a convenience for the user. E.g. the most general metadata, `description` allows you to attach an arbitrary string to a variable. Metadata is attached when a variable is created by adding it within square brackets after the variable in question. ```@example advanced_intro_to_catalyst_indep_metadata using Catalyst @@ -483,7 +483,7 @@ Each metadata have its own implementation, and it is not possible to use custom getdescription(X) ``` -#### [Reaction metadata](@id advanced_intro_to_catalyst_metadata_reactions_) +### [Reaction metadata](@id advanced_intro_to_catalyst_metadata_reactions_) Reactions also have metadata. When created using the DSL, a reaction's metadata is given after the reactions (separated from it by a comma): ```@example advanced_intro_to_catalyst_indep_metadata