diff options
author | Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> | 2020-11-10 21:34:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 21:34:04 +0100 |
commit | e034ad418ad8da3754b80a9673b7017e9798b2a0 (patch) | |
tree | dd367c479e5b1e7c5e9b43b5b9f2366528709460 /manifest-reference.md | |
parent | d569a89d7d059a5ba914e51d6fd7b32132b33c5e (diff) | |
download | fpm-e034ad418ad8da3754b80a9673b7017e9798b2a0.tar.gz fpm-e034ad418ad8da3754b80a9673b7017e9798b2a0.zip |
Add automatic documentation for Fortran fpm (#209)
- create docs.md as input for FORD
- fix docstrings and comment style for FORD
- workaround FORD bug by adding whitespace to table headers
- add manifest reference to FORD pages
- apply ugly workaround to not replace array of tables with links
Diffstat (limited to 'manifest-reference.md')
-rw-r--r-- | manifest-reference.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifest-reference.md b/manifest-reference.md index 5dd038d..5f0227a 100644 --- a/manifest-reference.md +++ b/manifest-reference.md @@ -231,12 +231,12 @@ See [specifying dependencies](#specifying-dependencies) for more details. *Example:* ```toml -[[executable]] +[[ executable ]] name = "app-name" source-dir = "prog" main = "program.f90" -[[executable]] +[[ executable ]] name = "app-tool" [executable.dependencies] helloff = { git = "https://gitlab.com/everythingfunctional/helloff.git" } @@ -270,12 +270,12 @@ See [specifying dependencies](#specifying-dependencies) for more details. *Example:* ```toml -[[test]] +[[ test ]] name = "test-name" source-dir = "testing" main = "tester.F90" -[[test]] +[[ test ]] name = "tester" [test.dependencies] helloff = { git = "https://gitlab.com/everythingfunctional/helloff.git" } |