diff --git a/docs/src/spatial_modelling/lattice_reaction_systems.md b/docs/src/spatial_modelling/lattice_reaction_systems.md
index c5fcfd6ce7..675dad48cf 100644
--- a/docs/src/spatial_modelling/lattice_reaction_systems.md
+++ b/docs/src/spatial_modelling/lattice_reaction_systems.md
@@ -62,9 +62,7 @@ and plot the simulation using
import CairoMakie
lattice_animation(sol, :X1, lrs, "lattice_simulation_2d.mp4")
```
-```@raw html
-
-```
+
More information on how to retrieve values from spatial simulations can be found [here](@ref lattice_simulation_structure_interaction_simulation_species), and for plotting them, [here](@ref lattice_simulation_plotting). Finally, a list of functions for querying `LatticeReactionSystems` for various properties can be found [here](@ref api_lattice_simulations).
## [Spatial reactions](@id spatial_lattice_modelling_intro_spatial_reactions)
diff --git a/docs/src/spatial_modelling/lattice_simulation_plotting.md b/docs/src/spatial_modelling/lattice_simulation_plotting.md
index 4470108612..9d7622e3d6 100644
--- a/docs/src/spatial_modelling/lattice_simulation_plotting.md
+++ b/docs/src/spatial_modelling/lattice_simulation_plotting.md
@@ -46,9 +46,7 @@ If we instead wish to create an animation of our solution across the entire simu
```@example lattice_plotting_1d
lattice_animation(sol, :X1, lrs, "lattice_simulation_1d.mp4")
```
-```@raw html
-
-```
+
Since we animate the solution across the entire simulation, we do not need to provide a `t` value. However, there are some additional (optional) arguments we might wish to provide:
- `nframes = 200`: The number of frames in the animation (these are evenly samples across the simulation).
- `framerate = 20`: The frame rate of the animation.
@@ -90,9 +88,7 @@ An animation of the solution can be created in a similar manner as for [the one-
```@example lattice_plotting_2d
lattice_animation(sol, :X, lrs, "lattice_simulation_2d.mp4")
```
-```@raw html
-
-```
+
Again, please check the API pages for the [`lattice_plot`](@ref) and [`lattice_animation`](@ref) functions to see more details of their various options.