summaryrefslogtreecommitdiff
path: root/pygments/formatters
Commit message (Collapse)AuthorAgeFilesLines
* Revert changes to pygments/formatters/_mapping.pyEdoardo Tenani2015-02-181-0/+1
|
* Add arduino lexer and styleEdoardo Tenani2015-01-281-1/+0
|
* merge with stableGeorg Brandl2015-01-212-23/+12
|\
| * latex: small code cleanupGeorg Brandl2014-11-131-12/+11
| |
| * More coverage of newer HTML formatter options.Georg Brandl2014-11-111-11/+1
| |
* | Copyright year update.Georg Brandl2015-01-2111-11/+11
|/
* Bring coverage testing up to scratch. Add "pragma: no cover" to __main__ blocks.Georg Brandl2014-11-101-1/+2
|
* Fix leftover debugging "raise". Add test coverage for errors and exceptions ↵Georg Brandl2014-11-101-2/+2
| | | | in cmdline_main.
* Fix Raw token lexer/formatter with new default encoding.Georg Brandl2014-11-061-0/+1
|
* Default lexer encoding is now "guess", i.e. UTF-8 / Locale / Latin1 isGeorg Brandl2014-11-061-1/+1
| | | | tried in that order.
* Fix docstring.Georg Brandl2014-10-291-1/+1
|
* Minor cleanup in TestcaseFormatterTim Hatch2014-10-151-3/+1
|
* Make mapfiles.Tim Hatch2014-10-141-1/+1
|
* terminal formatters: PEP8 cleanupGeorg Brandl2014-10-142-27/+27
|
* Remove non-ASCII from non-Unicode string.Georg Brandl2014-10-141-1/+1
|
* Merged in protz/pygments-main/add-envname (pull request #235)Georg Brandl2014-10-0811-224/+471
|\
| * Merged in hexid/pygments-main (pull request #380)Georg Brandl2014-10-081-4/+4
| |\ | | | | | | | | | Change spacing for HTML formatter regarding inline linenos
| | * Move space after inline html linenos to be inside of the span containing the ↵Nick Currier2014-07-031-4/+4
| | | | | | | | | | | | linenos
| * | Closes #800: Add "inencoding" option to override "encoding".Georg Brandl2014-10-081-1/+0
| | |
| * | Fix (false positive) pyflakes warning.Georg Brandl2014-10-071-0/+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.
| * | Closes #1013: allow "encoding" for the Raw formatter.Georg Brandl2014-10-071-3/+2
| | |
| * | No raw "u" literals in Py3.Georg Brandl2014-09-201-10/+10
| | |
| * | better not to use unicode_literals...Georg Brandl2014-09-201-28/+25
| | |
| * | Sort out Unicode output issues with RTF and image formatters.Georg Brandl2014-09-202-8/+8
| | |
| * | Image formatter: PEP8...Georg Brandl2014-09-201-7/+7
| | |
| * | Refactored formatter mapping to work like the lexer mapping.Georg Brandl2014-09-202-97/+122
| |/ | | | | | | 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
| * Merged in jambonrose/pygments-main (pull request #338)Tim Hatch2014-05-161-15/+18
| |\ | | | | | | | | | Produce only unicode escape sequences in RTFs
| | * RTF Formatter: replaced surrogate pair calculation with util.Andrew Pinkham2014-05-061-8/+3
| | |
| | * RTF Formatter: consolidated output functions.Andrew Pinkham2014-04-281-2/+1
| | |
| | * RTF Formatter: removed unnecessary newlineAndrew Pinkham2014-04-281-1/+0
| | |
| | * RTF Formatter: added documentation about new output.Andrew Pinkham2014-04-281-0/+4
| | |
| | * RTF Formatter: inlined surrogate pair calculation.Andrew Pinkham2014-04-281-20/+10
| | |
| | * RTF Formatter: switch format character %i to %d.Andrew Pinkham2014-04-271-1/+1
| | |
| | * RTF Formatter: removed unnecessary floor function.Andrew Pinkham2014-04-271-2/+2
| | |
| | * RTF Formatter: pure unicode escaped output.Andrew Pinkham2014-04-261-14/+30
| | |
| * | Rename test case variable from 'expected' to 'tokens' to fit line width limitGaurav Jain2014-05-121-2/+2
| | |
| * | Fix some lines to be within 90 charactersGaurav Jain2014-05-122-3/+4
| |/ | | | | | | Some regular expressions has been simplified to use \w in order to reduce line length
| * Add testcase formatterTim Hatch2014-04-232-2/+50
| | | | | | | | Usage: echo 'print "hi";' | pygmentize -l python -f testcase
| * If encoding fails use ? as ANSI fallback characterGaurav Jain2014-04-151-3/+3
| |
| * Many minor style fixes (trailing whitespace, tabs, etc.)Georg Brandl2014-04-151-2/+2
| |
| * Merged in ssproessig/pygments-main (pull request #266)Tim Hatch2014-04-1411-69/+201
| |\
| | * Correct doc location for fontsize.Tim Hatch2014-04-141-3/+6
| | |
| | * Merged in jaingaurav2/pygments-main (pull request #305)Tim Hatch2014-04-141-0/+8
| | |\
| | | * Support fontsize option for RTF formattingGaurav Jain2014-03-211-0/+8
| | | |
| | * | Merge with pygments-mainTim Hatch2014-04-141-3/+3
| | |\ \
| | | * | fix spelling in new class nameGeorg Brandl2014-04-141-2/+2
| | | | |
| | | * | remove "ur" literal which breaks python 3 compatGeorg Brandl2014-04-141-2/+2
| | | | |
| | * | | Only include the regular LatexFormatter in __all__Tim Hatch2014-04-141-1/+1
| | |/ / | | | | | | | | | | | | | | | | If we include the other, the tests will want to instantiate it, and we don't want that. It's only run as a special case in cmdline.py right now.