Fortran90 Parser

Description

The Fortran90 parser allows you to have Fortran code rendered nicely inside Moin's code blocks.

Download & Release Notes

Download

Release Version

Moin Version

Release Notes

parser/fortran90.py

1.0

1.5

ParserMarket/Fortran90/ReleaseNotes

Installation

For general installation instructions, see ParserMarket/InstallingParsers. This parser requires no special dependencies, such as outside Python libraries.

Usage

To use this parser, simply put #!fortran90 after the beginning of the code block.

Example

{{{#!fortran90
c
c   Hello, world.
c
      Program Hello

      implicit none
      logical DONE

      DO while (.NOT. DONE)
        write(*,10)
      END DO
   10 format('Hello, world.')
      END
}}}

This parser is copyrighted by ChmBerg

License

This parser is released under the terms of the GNU GPL.

Discussion

MoinMoin: ParserMarket/Fortran90 (last edited 2008-01-28 18:51:04 by FedericoLorenzi)