Skip to content

Commit

Permalink
Fix links to intrinsic mods
Browse files Browse the repository at this point in the history
Fixes #564
  • Loading branch information
ZedThree committed Oct 13, 2023
1 parent 8b1cfd0 commit 9f6d8e4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion example/example-project-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ graph: true
search: true
extra_mods: json_module: http://jacobwilliams.github.io/json-fortran/
futility: http://cmacmackin.github.io
iso_fortran_env: "https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORTRAN_005fENV.html"
license: by-nc
extra_filetypes: sh #
max_frontpage_items: 4
Expand Down
18 changes: 9 additions & 9 deletions ford/fortran_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@


INTRINSIC_MODS = {
"iso_fortran_env": '<a href="http://fortranwiki.org/fortran/show/iso_fortran_env">iso_fortran_env</a>',
"iso_c_binding": '<a href="http://fortranwiki.org/fortran/show/iso_c_binding">iso_c_binding</a>',
"ieee_arithmetic": '<a href="http://fortranwiki.org/fortran/show/ieee_arithmetic">ieee_arithmetic</a>',
"ieee_exceptions": '<a href="http://fortranwiki.org/fortran/show/IEEE+arithmetic">ieee_exceptions</a>',
"ieee_features": '<a href="http://fortranwiki.org/fortran/show/IEEE+arithmetic">ieee_features</a>',
"openacc": '<a href="https://www.openacc.org/sites/default/files/inline-images/Specification/OpenACC.3.0.pdf#page=85">openacc</a>',
"omp_lib": '<a href="https://www.openmp.org/spec-html/5.1/openmpch3.html#x156-1890003">omp_lib</a>',
"mpi": '<a href="http://www.mpi-forum.org/docs/mpi-3.1/mpi31-report/node410.htm">mpi</a>',
"mpi_f08": '<a href="http://www.mpi-forum.org/docs/mpi-3.1/mpi31-report/node409.htm">mpi_f08</a>',
"iso_fortran_env": "http://fortranwiki.org/fortran/show/iso_fortran_env",
"iso_c_binding": "http://fortranwiki.org/fortran/show/iso_c_binding",
"ieee_arithmetic": "http://fortranwiki.org/fortran/show/ieee_arithmetic",
"ieee_exceptions": "http://fortranwiki.org/fortran/show/IEEE+arithmetic",
"ieee_features": "http://fortranwiki.org/fortran/show/IEEE+arithmetic",
"openacc": "https://www.openacc.org/sites/default/files/inline-images/Specification/OpenACC.3.0.pdf#page=85",
"omp_lib": "https://www.openmp.org/spec-html/5.1/openmpch3.html#x156-1890003",
"mpi": "http://www.mpi-forum.org/docs/mpi-3.1/mpi31-report/node410.htm",
"mpi_f08": "http://www.mpi-forum.org/docs/mpi-3.1/mpi31-report/node409.htm",
}


Expand Down

0 comments on commit 9f6d8e4

Please sign in to comment.