ford
ford copied to clipboard
Automatically generates FORtran Documentation from comments within the code.
Is there a way to hide the partial listing at the bottom of the landing page generated by FORD?
In its call graphs, Doxygen generates a complete call graph showing all calls at all hierarchies. Subroutines and functions in other modules are shown in the form "temp_module :: temp_subroutine"....
I was wondering if ford has a Python API that one can use to determine if - a Fortran comment is a valid docstring - the docstring uses `predocmark` -...
What my code block actually looks like in markdown ---------------- ### Normal code block ```bash test ``` ### Indented code block 1. test1 2. test2 ```bash test2 ``` ----------- What...
There are three functions in `utils.py` that add Ford-specific features to the markdown: - `sub_macros`: replace `|aliases|` with literal text - `sub_notes`: replace `@notes` with `div` element boxes - `sub_links`:...
I have a number of procedures each in their own file of the form NAME.inc which are all components of a module, that includes them all. I can specify the...
The following is valid fortran (`gfortran` doesn't complain) but ford does not include `test2` in the documentation. ``` function test1() contains subroutine test2() end subroutine test2 end function test1 ```...
Hello, thank you for providing this package. I tried to use it to document some legacy fortran code. For this I wrote a project-file.md: https://github.com/Jonas231/Koko/blob/master/Docs/FORD/project-file.md A file .f within src_dir...
Hi Chris, I have not yet used Ford, thus I may be wrong, but reading your doc it seems that the output is only html. I suppose that inside Ford...
This program is super useful! I have built it in to my git `pre-commit` hook so that it runs before every commit, but that means every single time I have...