Skip to content

Spicery/Ginger-Common-syntax-Pygments-Lexer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ginger Common Syntax Lexer for Pygments

This is a pygments lexer for the Ginger Common syntax.

Example

define nfib( n ) =>>
    if n <= 1 then
        1
    else
        1 + nfib( n - 1 ) + nfib( n - 2 )
    endif
enddefine;

Installing

sudo python setup.py install

Development code

pip install -e git+git://github.com/Spicery/Ginger-Common-syntax-Pygments-Lexer.git#egg=Ginger-Common-syntax-Pygments-Lexer

Syntax highlighting examples

pygmentize sample.common

About

A Pygments syntax lexer for the Ginger Common syntax

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages