Fortran-FOSS-Programmers / ford

Automatically generates FORtran Documentation from comments within the code.
https://forddocs.readthedocs.io
GNU General Public License v3.0
402 stars 131 forks source link

Fix clash between table and alias syntax #608

Closed ZedThree closed 7 months ago

ZedThree commented 7 months ago

Fixes #604

Turns out this was a bit more complicated than expected as tables are "block processors" and I had implemented aliases as "inline processors", which always run after block processors. So this required rewriting the processor as a "preprocessor" which always run before block processors.