-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
@autodocs
to dynamically include all docstrings (#123)
* use autodocs to dynamically include all docstrings * add section for specializations * add some links and crossreferences * unify docstrings for BezierCurve spezialization * add link and fix typo
- Loading branch information
1 parent
879b238
commit c677cd5
Showing
6 changed files
with
47 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,40 @@ | ||
# Public API | ||
|
||
```@meta | ||
CurrentModule = MeshIntegrals | ||
``` | ||
|
||
## Integrals | ||
|
||
```@docs | ||
MeshIntegrals.integral | ||
```@autodocs | ||
Modules = [MeshIntegrals] | ||
Pages = ["integral.jl"] | ||
``` | ||
|
||
### Specializations | ||
|
||
```@autodocs | ||
Modules = [MeshIntegrals] | ||
Pages = Main.SPECIALIZATIONS_FILES | ||
``` | ||
|
||
### Aliases | ||
|
||
```@docs | ||
MeshIntegrals.lineintegral | ||
MeshIntegrals.surfaceintegral | ||
MeshIntegrals.volumeintegral | ||
```@autodocs | ||
Modules = [MeshIntegrals] | ||
Pages = ["integral_aliases.jl"] | ||
``` | ||
|
||
## Integration Rules | ||
|
||
```@docs | ||
MeshIntegrals.GaussKronrod | ||
MeshIntegrals.GaussLegendre | ||
MeshIntegrals.HAdaptiveCubature | ||
```@autodocs | ||
Modules = [MeshIntegrals] | ||
Pages = ["integration_rules.jl"] | ||
``` | ||
|
||
## Derivatives | ||
|
||
```@docs | ||
MeshIntegrals.jacobian | ||
```@autodocs | ||
Modules = [MeshIntegrals] | ||
Pages = ["differentiation.jl"] | ||
``` |
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