commit b2a0b00aa8b315f1c86df738850d4bf493682b89
parent a29784ee88782858b9eb9e6d3c76b14dbcea89df
Author: Anders Damsgaard <andersd@riseup.net>
Date: Mon, 11 Sep 2017 10:11:40 -0400
auto-document SeaIce.jl
Diffstat:
3 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/docs/make.jl b/docs/make.jl
@@ -9,7 +9,8 @@ makedocs(
pages = Any[ # Compat: `Any` for 0.4 compat
"Home" => "index.md",
"Manual" => Any[
- "installation.md"
+ "installation.md",
+ "module.md"
]
]
)
diff --git a/docs/src/index.md b/docs/src/index.md
@@ -4,13 +4,14 @@
## Package features
-Flexible and computationally efficient 2d implementation of the discrete element method. The particles represent sea-ice floes, which can be forced by ocean and velocity fields. The ice floes can interact through elasto-viscous-frictional contact rheologies and obtain time-dependent tensile strength.
+Flexible and computationally efficient 2d implementation of the discrete element method. The particles represent sea-ice floes, which can be forced by ocean and atmospheric velocity fields. The ice floes can interact through elasto-viscous-frictional contact rheologies and obtain time-dependent tensile strength.
## Manual Outline
```@contents
Pages = [
- "installation.md"
+ "installation.md",
+ "module.md"
]
Depth = 1
```
diff --git a/docs/src/module.md b/docs/src/module.md
@@ -0,0 +1,6 @@
+# Modules, constants, types, functions, and macros
+
+```@autodocs
+Modules = [SeaIce]
+Private = false
+```