summaryrefslogtreecommitdiff
path: root/pygments/formatters/_mapping.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove all files, redirect to GitHub.HEADmasterMatth?us G. Chajdas2019-11-101-85/+0
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* Copyright update.Georg Brandl2017-01-221-1/+1
|
* Make "make mapfiles" Python3 compatible.Georg Brandl2016-02-021-1/+1
|
* move `.replace` immediately after `read()`, andhhsprings2015-11-091-2/+9
| | | | explain in a comment that it's for windows.
* _mapping.py should keep NL not CRNL.hhsprings2015-11-071-3/+3
|
* Closes #1142: add 16-million color terminal formatter.Georg Brandl2015-10-171-1/+2
|
* Merge with jjatria/pygments-main (praat) (pull request #492)Tim Hatch2015-10-141-0/+1
|\
| * Add IRC formatterTrevor Bergeron2015-03-161-0/+1
|/
* fixup elisp lexer a bitGeorg Brandl2015-02-211-1/+0
|
* Revert changes to pygments/formatters/_mapping.pyEdoardo Tenani2015-02-181-0/+1
|
* Add arduino lexer and styleEdoardo Tenani2015-01-281-1/+0
|
* Copyright year update.Georg Brandl2015-01-211-1/+1
|
* Bring coverage testing up to scratch. Add "pragma: no cover" to __main__ blocks.Georg Brandl2014-11-101-1/+2
|
* Make mapfiles.Tim Hatch2014-10-141-1/+1
|
* Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵Georg Brandl2014-10-071-10/+6
| | | | | | on Py3. Also fix a bunch of other uses of open() to use the with statement.
* Refactored formatter mapping to work like the lexer mapping.Georg Brandl2014-09-201-57/+34
| | | | Thanks to Ilia Choly for the initial pull request.
* Make the formatters _mapping.py work like lexers wrt. PYTHONPATHTim Hatch2014-05-191-0/+7
| | | | Resolves #784
* Add testcase formatterTim Hatch2014-04-231-1/+3
| | | | Usage: echo 'print "hi";' | pygmentize -l python -f testcase
* manual prettifying and small fixes after futurize runGeorg Brandl2014-01-181-0/+1
|
* futurizing: move to print_function and "except X as Y" syntaxGeorg Brandl2014-01-181-1/+2
|
* new year in copyright noticeGeorg Brandl2014-01-101-1/+1
|
* Fixed a typo in the header 'pygments/formatters/_mapping.py' by adding one ↵sjorek2013-09-151-2/+2
| | | | missing 'i' in in the words 'definition' and 'definitions'. As the header (as well as the footer) is not part of this file's automatic regeneration I dared to do it manually :-)
* Happy new year 2013.Georg Brandl2013-01-091-1/+1
|
* Move import unused outside __main__ into __main__.Georg Brandl2012-08-191-2/+2
|
* Merge pygments-main with pygments-timTim Hatch2012-02-271-1/+1
|\
| * Merge pygments-main with pygments-timTim Hatch2012-01-031-1/+1
| |\
| | * Bulk changes to improve many lexers inner workingsTim Hatch2011-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on a suspicion that most examplefiles only exercise a small part of the lexers, I've written some code to find suspicious parts of regular expressions, then gone back over those to fix them. Most of these affect whether the regex does what it looks like it does, but none of them should appreciably change the function of the lexer. * a few cases which used capturing groups + bygroups incorrectly (most were harmless, but I think one could have generated a traceback in its previous state) * a few cases which could match empty string, without a callback (this is highly discouraged, because if an op doesn't consume any characters, it might be possible to enter an empty loop). I'll revisit individually the cases where a callback or state push is used. * many cases with embedded newlines in non-verbose regexes * many, many cases with reversed (else|elseif) style alternations
* | | Copyright update.Georg Brandl2012-02-051-1/+1
|/ /
* | Fix current copyright year.Georg Brandl2011-07-091-1/+1
|/
* Happy new year!Georg Brandl2010-01-011-1/+1
|
* Update copyrighting style to standard "team" tags.gbrandl2009-01-041-2/+2
| | | | Update AUTHORS file accordingly.
* open() should be used instead of file()Benjamin Peterson2008-09-211-2/+2
|
* * Add one formatter per image format, to avoid surprises withgbrandl2008-09-071-1/+7
| | | | | | | pygmentize -f gif -o foo.gif foo.py which would previously create a PNG image. * Make image format names case-insensitive.
* Add new Makefile lexer that should be able to handle BSD and/or GNUthatch2008-04-021-1/+1
| | | | preprocessor directives, and regenerate map files
* initial import of Image FormatterAli Afshar2007-11-061-1/+3
|
* Add SVG formatter.gbrandl2007-10-141-0/+2
|
* [svn] Add ActionScript lexer, #247.gbrandl2007-06-131-1/+1
|
* [svn] Add terminal 256 color formatter.gbrandl2007-06-131-0/+2
|
* [svn] Quite a few things:gbrandl2007-02-121-0/+80
- new pygmentize options, -F for filters and -H for detail help. - an automatically-created formatter map - better HTML formatter subclassing