summaryrefslogtreecommitdiff
path: root/pygments/formatters
Commit message (Collapse)AuthorAgeFilesLines
* merge with stableGeorg Brandl2016-02-261-4/+32
|\
| * Rename ansilist that now is a set, slipped though PR 531 reviewMatthias Bussonnier2016-02-141-4/+4
| |
| * Add authors entry, changelog for PR#531 and fixup a few style issues.Georg Brandl2016-02-141-11/+9
| |
| * Merged in Carreau/pygments-main/256ansi (pull request #531)Georg Brandl2016-02-141-4/+34
| |\ | | | | | | | | | Allow ansi escape sequence as color format
| | * Update to leave compatibility for other formatters.Matthias Bussonnier2016-02-122-23/+20
| | |
| | * Handle some `#ansi*` in HtmlFormatterMatthias Bussonnier2016-02-081-2/+19
| | |
| | * Add documentation on non-extended foreground color for Terminal256 stylesMatthias Bussonnier2016-02-071-0/+7
| | |
| | * merge with originMatthias Bussonnier2015-12-181-1/+10
| | |\
| | | * Allow ansi escape sequence as color formatMatthias Bussonnier2015-11-041-1/+10
| | | |
* | | | Fixed Python 3 regression in image formatter (closes #1215)Georg Brandl2016-02-261-1/+1
|/ / /
* | | Added a mapping table for LaTeX encodings and added utf8 (closes #1152)Georg Brandl2016-02-021-1/+8
| | |
* | | Fixed HTML formatter output with leading empty lines (closes #1111)Georg Brandl2016-02-021-1/+3
| | |
* | | Make "make mapfiles" Python3 compatible.Georg Brandl2016-02-021-1/+1
| | |
* | | Fixed image formatter font searching on Macs (closes #1188)Georg Brandl2016-02-021-3/+7
| | |
* | | "make check" style fixes.Georg Brandl2016-01-161-1/+1
| | |
* | | Fix byte decoding in py3 for ImageFormatterRishav Kundu2016-01-071-1/+1
| | | | | | | | | | | | subprocess.communicate returns a bytes object
* | | mergeGeorg Brandl2016-01-041-0/+10
|\ \ \
| * | | Add filename parameter to HtmlFormatterAlexander Todorov2015-11-291-0/+10
| |/ /
* | | HTML formatter: pep8Georg Brandl2016-01-041-22/+22
|/ /
* | 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 #1160: fix docstring markup.Georg Brandl2015-10-201-1/+1
|
* Closes #1142: add 16-million color terminal formatter.Georg Brandl2015-10-172-4/+63
|
* Optimized HtmlFormatter to run ~10x faster for long linesGiedrius Dubinskas2015-10-161-11/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | Changed string concatenation to list extend/join to reduce memory allocations. How to reproduce: Test data: $ echo '{' $(for i in {1..10000}; do printf '"key%d":"value %d", ' $i $i; done) '}' > /tmp/one-line.json Before: $ time ./pygmentize -O encoding=utf-8 -O stripnl=False -f html -l 'json' > /dev/null < /tmp/one-line.json real 0m5.597s user 0m4.400s sys 0m1.158s After: $ time ./pygmentize -O encoding=utf-8 -O stripnl=False -f html -l 'json' > /dev/null < /tmp/one-line.json real 0m0.347s user 0m0.309s sys 0m0.029s
* Avoid the shell entirely when finding fonts.Tim Hatch2015-10-161-10/+8
| | | | Manually tested on OS X.
* Merged in Javantea/pygments-main (pull request #501)Tim Hatch2015-10-164-44/+212
|\ | | | | | | Fix Shell Injection in FontManager._get_nix_font_path
| * Merge with jjatria/pygments-main (praat) (pull request #492)Tim Hatch2015-10-144-44/+212
| |\
| | * Merge with mallegonian/pygments-main (pull request #458)Tim Hatch2015-10-142-44/+29
| | |\
| | | * Merged in hhsprings/pygments-main (pull request #479)Tim Hatch2015-10-141-0/+1
| | | |\
| | | | * Highlight prompts different in TerminalFormatterTim Hatch2015-10-141-0/+1
| | |_|/ | |/| |
| | | * Merged in jonashaag/pygments-main/jonashaag/fix-typo-1441310321454 (pull ↵Tim Hatch2015-10-131-43/+27
| | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | request #496) Fix typo
| | | | * Address problems with linenos in terminal formatter by rewritingTim Hatch2015-10-071-43/+27
| | |_|/ | |/| | | | | | | | | | Fixes #1147
| | | * Fix typoJonas Haag2015-09-031-1/+1
| | |/ | |/|
| | * Add IRC formatterTrevor Bergeron2015-03-162-0/+183
| |/
* | Fix Shell Injection in FontManager._get_nix_font_pathJavantea2015-09-281-2/+3
|/
* Fixed style inheritance for non-standard token types in HTML output.Georg Brandl2015-03-081-1/+10
|
* 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
|
* 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
|