Wiki source code of Code
Last modified by Ricardo Julio Rodríguez Fernández on 2024/01/24 21:19
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{python}} | ||
2 | import pygments | ||
3 | from pygments.lexers import get_all_lexers | ||
4 | |||
5 | |||
6 | print "|=Language |=Name |=File Extension |=Mime Types" | ||
7 | for lexer in sorted(get_all_lexers()): | ||
8 | print "| ", lexer[0], " | ", ", ".join(lexer[1]), " | ", ", ".join(lexer[2]), " | ", ", ".join(lexer[3]) | ||
9 | |||
10 | {{/python}} |