summaryrefslogtreecommitdiff
path: root/pygments/formatters
Commit message (Collapse)AuthorAgeFilesLines
* 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.
| * | Merged in protz/pygments-main (pull request #230)Tim Hatch2014-04-141-11/+11
| | | | | | | | | | | | Modified to use simpler checks for string length.
| * | Merge remote-tracking branch 'pr230/master'Tim Hatch2014-04-141-4/+88
| |\ \ | | |/ | |/| | | | | | | Conflicts: pygments/formatters/latex.py
| | * Update the patch from #493 to work with tip.Jonathan Protzenko2013-08-211-3/+85
| | |
| * | use versionadded directivesGeorg Brandl2014-01-197-34/+56
| | |
| * | New docs + website using Sphinx.Georg Brandl2014-01-181-1/+1
| | |
| * | Finalize single-source port for Py2.[67] and Py3.3+.Georg Brandl2014-01-184-15/+23
| | |
| * | manual prettifying and small fixes after futurize runGeorg Brandl2014-01-182-0/+2
| | |
| * | futurizing: move to print_function and "except X as Y" syntaxGeorg Brandl2014-01-183-4/+7
| | |
| * | new year in copyright noticeGeorg Brandl2014-01-1011-11/+11
| | |
| * | Merged in ddbennett/pygments (pull request #205)Georg Brandl2014-01-092-3/+3
| |\ \ | | | | | | | | | | | | Use a regular expression cache to avoid redundant and expensive RE compiles
| * | | Use a regular expression cache to avoid redundant and expensive RE compiles whenddbennett2013-05-241-2/+4
| | |/ | |/| | | | | | | used embedded in a long-running application.
* | | adding linenos option (enables line number output on the terminal)S?ren Spr??ig2013-12-071-0/+40
| |/ |/|
* | Merged in sjorek/pygments-main/fix-typo-in-lexers-mapping-header (pull ↵Georg Brandl2013-10-031-2/+2
|\ \ | | | | | | | | | | | | | | | request #240) Fix tiny typos in header of 'lexers/_mapping.py' and 'formatters/_mapping.py'
| * | 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 :-)
* | forgot a backslashErik Bernoth2013-10-011-1/+1
|/
* HTML formatter: add / to path in ctags linking if nonempty; fix spelling.Georg Brandl2013-02-031-1/+3
|
* HTML linespans: add changelog and versionaddedGeorg Brandl2013-01-091-1/+3
|
* Merged in icholy/pygments-main (pull request #82: added `linespans` option ↵Georg Brandl2013-01-091-0/+18
|\ | | | | | | to HtmlFormatter to wrap lines in spans)
| * fixed typoIlia Choly2012-06-181-1/+1
| |
| * added `linespans` option to HtmlFormatter to wrap lines in spansIlia Choly2012-06-181-0/+18
| |
* | CTags feature:Georg Brandl2013-01-091-21/+24
| | | | | | | | | | | | | | | | | | * rename parameter "urlformat" to "tagurlformat" to make clear it belongs to the tags feature * change NameError to RuntimeError and tone down the message * document that python-ctags must be installed to use the tagsfile feature * move test tags file from examplefiles/, where it will be attempted as a test file * fix test to work if python-ctags is not installed * changelog/attribution
* | Merge pull request #87 (ctags link support for HTML formatter) from ↵Georg Brandl2013-01-0911-25/+24
|\ \ | | | | | | | | | https://bitbucket.org/pepijndevos/pygments-main/overview
| * | Happy new year 2013.Georg Brandl2013-01-0911-11/+11
| | |
| * | Fix issues found by "make check".Georg Brandl2013-01-091-1/+2
| | |
| * | Removed some unused variables to fix pyflakes warningsDmitry Shachnev2012-11-121-2/+0
| | |
| * | Closes #785: make sure LateX formatter output is Unicode.Georg Brandl2012-08-191-8/+8
| | |
| * | Closes #772: image formatter: move Unix-specific import of ↵Georg Brandl2012-08-191-1/+1
| | | | | | | | | | | | commands.getstatusoutput() to Unix-specific method