-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
trixi_include
from TrixiBase.jl (#88)
* use trixi_include from TrixiBase.jl * generate API for TrixiBase.jl in docs * format * Bump version of TrixiBase.jl Co-authored-by: Hendrik Ranocha <[email protected]> * bump TrixiBase to v0.1.1 in docs --------- Co-authored-by: Hendrik Ranocha <[email protected]>
- Loading branch information
1 parent
7db8bb0
commit ac6f2c0
Showing
9 changed files
with
68 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
using DispersiveShallowWater | ||
using Documenter | ||
using DispersiveShallowWater | ||
using TrixiBase | ||
|
||
# Define module-wide setups such that the respective modules are available in doctests | ||
DocMeta.setdocmeta!(DispersiveShallowWater, :DocTestSetup, :(using DispersiveShallowWater); | ||
recursive = true) | ||
DocMeta.setdocmeta!(TrixiBase, :DocTestSetup, :(using TrixiBase); recursive = true) | ||
|
||
makedocs(; | ||
modules = [DispersiveShallowWater], | ||
modules = [DispersiveShallowWater, TrixiBase], | ||
authors = "Joshua Lampert <[email protected]>", | ||
repo = Remotes.GitHub("JoshuaLampert", "DispersiveShallowWater.jl"), | ||
sitename = "DispersiveShallowWater.jl", | ||
|
@@ -18,7 +20,10 @@ makedocs(; | |
pages = [ | ||
"Home" => "index.md", | ||
"Overview" => "overview.md", | ||
"Reference" => "ref.md", | ||
"Reference" => [ | ||
"TrixiBase" => "ref-trixibase.md", | ||
"DispersiveShallowWater" => "ref.md", | ||
], | ||
"License" => "license.md", | ||
]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# TrixiBase.jl API | ||
|
||
```@meta | ||
CurrentModule = TrixiBase | ||
``` | ||
|
||
```@autodocs | ||
Modules = [TrixiBase] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters