| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | HTML formatter: add / to path in ctags linking if nonempty; fix spelling. | Georg Brandl | 2013-02-03 | 1 | -1/+3 |
| | | |||||
| * | HTML linespans: add changelog and versionadded | Georg Brandl | 2013-01-09 | 1 | -1/+3 |
| | | |||||
| * | Merged in icholy/pygments-main (pull request #82: added `linespans` option ↵ | Georg Brandl | 2013-01-09 | 1 | -0/+18 |
| |\ | | | | | | | to HtmlFormatter to wrap lines in spans) | ||||
| | * | fixed typo | Ilia Choly | 2012-06-18 | 1 | -1/+1 |
| | | | |||||
| | * | added `linespans` option to HtmlFormatter to wrap lines in spans | Ilia Choly | 2012-06-18 | 1 | -0/+18 |
| | | | |||||
| * | | CTags feature: | Georg Brandl | 2013-01-09 | 1 | -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 Brandl | 2013-01-09 | 11 | -25/+24 |
| |\ \ | | | | | | | | | | https://bitbucket.org/pepijndevos/pygments-main/overview | ||||
| | * | | Happy new year 2013. | Georg Brandl | 2013-01-09 | 11 | -11/+11 |
| | | | | |||||
| | * | | Fix issues found by "make check". | Georg Brandl | 2013-01-09 | 1 | -1/+2 |
| | | | | |||||
| | * | | Removed some unused variables to fix pyflakes warnings | Dmitry Shachnev | 2012-11-12 | 1 | -2/+0 |
| | | | | |||||
| | * | | Closes #785: make sure LateX formatter output is Unicode. | Georg Brandl | 2012-08-19 | 1 | -8/+8 |
| | | | | |||||
| | * | | Closes #772: image formatter: move Unix-specific import of ↵ | Georg Brandl | 2012-08-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | commands.getstatusoutput() to Unix-specific method | ||||
| | * | | Move import unused outside __main__ into __main__. | Georg Brandl | 2012-08-19 | 1 | -2/+2 |
| | |/ | |||||
| * | | add suggested edits and test | Pepijn de Vos | 2012-09-24 | 1 | -4/+4 |
| | | | |||||
| * | | fix for possible mutiline names | Pepijn de Vos | 2012-07-16 | 1 | -1/+1 |
| | | | |||||
| * | | update documentation to reflect urlformat change | Pepijn de Vos | 2012-07-16 | 1 | -11/+4 |
| | | | |||||
| * | | format url | Pepijn de Vos | 2012-07-16 | 1 | -16/+12 |
| | | | |||||
| * | | documentation for ctags | Pepijn de Vos | 2012-07-14 | 1 | -0/+20 |
| | | | |||||
| * | | multifile support | Pepijn de Vos | 2012-07-14 | 1 | -2/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Example usage: #!/bin/bash for f in $@ do mkdir -p `dirname "output/$f.html"` ./pygmentize -f html -O anchorlinenos,linenos,full,tagurlprefix=`pwd`/,singlepage=False,lineanchors=L,tagsfile=tags -o "output/$f.html" "$f" done | ||||
| * | | single file ctags | Pepijn de Vos | 2012-07-14 | 1 | -0/+25 |
| |/ | |||||
| * | Closes #755: replace some more active chars for latex. | Georg Brandl | 2012-05-08 | 1 | -0/+6 |
| | | |||||
| * | Merge pygments-main with pygments-tim | Tim Hatch | 2012-02-27 | 1 | -1/+1 |
| |\ | |||||
| | * | Merge pygments-main with pygments-tim | Tim Hatch | 2012-01-03 | 1 | -1/+1 |
| | |\ | |||||
| | | * | Bulk changes to improve many lexers inner workings | Tim Hatch | 2011-03-19 | 1 | -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 | ||||
| * | | | Closes #691: Fix Python 3 terminal highlighting with pygmentize. | Georg Brandl | 2012-02-06 | 2 | -2/+8 |
| | | | | |||||
| * | | | Copyright update. | Georg Brandl | 2012-02-05 | 11 | -11/+11 |
| | | | | |||||
| * | | | Style fix. | Georg Brandl | 2012-02-05 | 1 | -1/+2 |
| | | | | |||||
| * | | | Fix specifyng the starting line number in lineanchors mode. Add tests for ↵ | Ana Nelson | 2011-10-02 | 1 | -1/+1 |
| |/ / | | | | | | | line numbering. | ||||
| * | | Define TeX commands in a way that always constructs command name correctly ↵ | Dmitri Gribenko | 2011-08-30 | 1 | -1/+1 |
| | | | | | | | | | regardless of symbols used. | ||||
| * | | Fix current copyright year. | Georg Brandl | 2011-07-09 | 11 | -11/+11 |
| | | | |||||
| * | | In the LaTeX formatter, fix display problems for styles with token ↵ | Georg Brandl | 2011-06-19 | 1 | -2/+4 |
| | | | | | | | | | background colors (#670). | ||||
| * | | In the LaTeX formatter, escape special &, < and > chars (#648). | Georg Brandl | 2011-06-18 | 1 | -0/+6 |
| |/ | |||||
| * | Do not generate classprefix without an actual class name (#479). | Georg Brandl | 2011-01-03 | 1 | -3/+5 |
| | | |||||
| * | Update output example. | Georg Brandl | 2010-08-22 | 1 | -4/+4 |
| | | |||||
| * | Escape the tilde as well. | Georg Brandl | 2010-08-22 | 1 | -1/+3 |
| | | |||||
| * | Escape more characters in LaTeX output (#505). | Georg Brandl | 2010-08-22 | 1 | -4/+11 |
| | | |||||
| * | merge with tim | Georg Brandl | 2010-08-22 | 1 | -11/+12 |
| |\ | |||||
| | * | Performance improvements in the HTML formatter (#523). | Georg Brandl | 2010-08-18 | 1 | -11/+12 |
| | | | |||||
| * | | Merge with -main | thatch | 2010-05-05 | 1 | -1/+1 |
| |\ \ | |/ |/| | |||||
| | * | 502: Use full path for PIL module, to not rely on the pth file | thatch | 2010-05-05 | 1 | -1/+1 |
| | | | |||||
| * | | With the ``noclasses`` option in the HTML formatter, some styles present in ↵ | Georg Brandl | 2010-04-25 | 1 | -4/+28 |
| | | | | | | | | | the stylesheet were not added as inline styles. | ||||
| * | | Remove compatibility "sets" imports. | Georg Brandl | 2010-02-18 | 2 | -7/+4 |
| |/ | |||||
| * | Version 1.2.2 | Georg Brandl | 2010-01-02 | 1 | -0/+4 |
| | | | | | | | | | ------------- (bugfix release, released Jan 02, 2010) Removed a backwards incompatibility in the LaTeX formatter that caused Sphinx to produce invalid commands when writing LaTeX output. | ||||
| * | Added `hl_lines` and `hl_color` options to image formatter (#457). | Georg Brandl | 2010-01-01 | 1 | -1/+30 |
| | | |||||
| * | Added options for rendering LaTeX in source code comments in the LaTeX ↵ | Georg Brandl | 2010-01-01 | 1 | -13/+59 |
| | | | | | formatter (#461). | ||||
| * | Happy new year! | Georg Brandl | 2010-01-01 | 11 | -11/+11 |
| | | |||||
| * | Added `line_number_start` option to image formatter (#456). | gbrandl | 2009-12-28 | 1 | -6/+13 |
| | | |||||
| * | #427: Improve inline style handling in !HtmlFormatter | thatch | 2009-09-18 | 1 | -4/+25 |
| | | |||||
| * | Fix typo. | gbrandl | 2009-08-11 | 1 | -1/+1 |
| | | |||||
| * | Fix markup. | gbrandl | 2009-08-10 | 1 | -1/+1 |
| | | |||||
