BBCodeFormatter:('BBCode',('bbcode','bb'),(),'Format tokens with BBcodes. These formatting codes are used by many bulletin boards, so you can highlight your sourcecode with pygments before posting it there.'),
BmpImageFormatter:('img_bmp',('bmp','bitmap'),('*.bmp',),'Create a bitmap image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'),
GifImageFormatter:('img_gif',('gif',),('*.gif',),'Create a GIF image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'),
HtmlFormatter:('HTML',('html',),('*.html','*.htm'),"Format tokens as HTML 4 ``<span>`` tags within a ``<pre>`` tag, wrapped in a ``<div>`` tag. The ``<div>``'s CSS class can be set by the `cssclass` option."),
ImageFormatter:('img',('img','IMG','png'),('*.png',),'Create a PNG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'),
JpgImageFormatter:('img_jpg',('jpg','jpeg'),('*.jpg',),'Create a JPEG image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'),
LatexFormatter:('LaTeX',('latex','tex'),('*.tex',),'Format tokens as LaTeX code. This needs the `fancyvrb` and `color` standard packages.'),
NullFormatter:('Text only',('text','null'),('*.txt',),'Output the text unchanged without any formatting.'),
RawTokenFormatter:('Raw tokens',('raw','tokens'),('*.raw',),'Format tokens as a raw representation for storing token streams.'),
RtfFormatter:('RTF',('rtf',),('*.rtf',),'Format tokens as RTF markup. This formatter automatically outputs full RTF documents with color information and other useful stuff. Perfect for Copy and Paste into Microsoft\xc2\xae Word\xc2\xae documents.'),
SvgFormatter:('SVG',('svg',),('*.svg',),'Format tokens as an SVG graphics file. This formatter is still experimental. Each line of code is a ``<text>`` element with explicit ``x`` and ``y`` coordinates containing ``<tspan>`` elements with the individual token styles.'),
Terminal256Formatter:('Terminal256',('terminal256','console256','256'),(),'Format tokens with ANSI color sequences, for output in a 256-color terminal or console. Like in `TerminalFormatter` color sequences are terminated at newlines, so that paging the output works correctly.'),
TerminalFormatter:('Terminal',('terminal','console'),(),'Format tokens with ANSI color sequences, for output in a text console. Color sequences are terminated at newlines, so that paging the output works correctly.')