ndarmage
ndarmage
Hello, Is it possible to leave the comment header of fortran blocks as raw text without interpreting it as ReST please ? A possible fix is adding the following lines,...
Hello, when using sphinx-fortran on windows systems, I noticed that the function get_src in module ``fortran_autodoc.py`` was wrongly processing filenames with full path stored in block['from']. On win system, a...
Hi, please change the following lines of class FortranAutoSrcfileDirective(Directive), method run ```python if objtype: objtype = objtype.split(' ,') ``` with: ```python if objtype: objtype = objtype.split(',') objtype = [o.strip() for...
Hi, I need to mock out numpy to prevent compilation of fortran code, when building my doc by sphinx on ReadTheDocs. I'm afraid this becomes an issue when this sphinx...
Hi, I noticed the following warning at build: WARNING: The config value `fortran_src' has type `list', defaults to `str'. Please, change the line (setup function in fortran_autodoc module): app.add_config_value('fortran_src', '.',...