summaryrefslogtreecommitdiff
path: root/pygments/styles
Commit message (Collapse)AuthorAgeFilesLines
* all: remove "u" string prefix (#1536)Georg Brandl2020-09-081-1/+1
| | | | | | | | | | | * all: remove "u" string prefix * util: remove unirange Since Python 3.3, all builds are wide unicode compatible. * unistring: remove support for narrow-unicode builds which stopped being relevant with Python 3.3
* all: use yield from (#1537)Georg Brandl2020-09-061-2/+1
|
* Update copyright year (fixes #1514.)Matthäus G. Chajdas2020-08-2235-35/+35
|
* Fix Solarized line number colors (#1477)Paweł Fertyk2020-07-041-0/+4
| | | | | | | | | | | | | | | | | * Add font and background colors to Style * Move all styles to get_style_defs, add tests * Remove hardcoded styles, add special lineno style * Add styles for special line numbers in tables * Update noclasses documentation * Refactor linenos elements and styles, add tests * Update AUTHORS * Fix multiple CSS prefixes, add tests
* various: style fixupsGeorg Brandl2019-11-291-4/+3
|
* Add New Style: InkpotCampbell Barton2019-11-252-0/+69
| | | | | | | | | | Based on the Vim theme: http://www.vim.org/scripts/script.php?script_id=1143 Example output: http://members.iinet.net.au/~ideasman42/dotemacs/init.html The theme is also bundled with qt-creator and available from emacs package manager. Also, there aren't many nice dark themes for Pygments at the moment.
* monokai style: fix Generic.Output/Generic.Prompt colors (bitbucket PR #835)Georg Brandl2019-11-241-2/+3
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-2834-40/+41
|
* Aliased stata-light to stata.Mauricio Caceres Bravo2019-04-021-0/+1
|
* Fix StataLexer format highlight error (change Name.Format to Name.Other)Mauricio Caceres Bravo2019-02-192-2/+2
| | | | | | | | StataLexer defined Name.Format for variable and print format highlighting; Name.Format is not a built-in token, which caused issues downstream in certain applications (e.g. [here](https://github.com/kylebarron/stata_kernel/issues/295)). This commit changes Name.Format to Name.Other.
* Merged default branch to hopefully solve merge conflictsMauricio Caceres Bravo2019-02-1233-31/+284
|\
| * Merged in camilstaps/pygments-main-solarized (pull request #708)Anteru2019-01-293-4/+4
| |\ | | | | | | | | | | | | | | | Adds a solarized style Approved-by: Anteru <bitbucket@ca.sh13.net>
| | * Use unicode literals in docstrings as wellNikolay Orlyuk2019-01-173-4/+4
| | | | | | | | | | | | Resolves #1492
| * | Adds a solarized styleCamil Staps2017-02-282-0/+131
| |/
| * mergeGeorg Brandl2017-01-222-0/+6
| |\
| | * Housekeeping.Georg Brandl2017-01-222-0/+6
| | |
| * | ABAP: a few minor fixesGeorg Brandl2017-01-222-17/+30
| | |
| * | Merged in schferbe/pygments-main/abap-fixes (pull request #689)Georg Brandl2017-01-221-0/+17
| |\ \ | | |/ | |/| | | | Abap fixes
| | * added style to resemble ABAP Development Workbenchben2017-01-091-0/+17
| | |
| * | styles: fixupsGeorg Brandl2017-01-222-2/+2
| | |
| * | Merged in sanssecours/pygments (pull request #623)Georg Brandl2017-01-222-1/+91
| |\ \ | | | | | | | | | | | | Add ?Rainbow Dash? syntax highlighting style
| | * | Add ?Rainbow Dash? syntax highlighting styleRen? Schwaiger2016-07-182-1/+91
| | |/ | | | | | | | | | | | | | | | | | | This bright and colorful style is a port of my TextMate theme [1]. It is based on ?Mac Classic? by Chris Thomas. [1]: http://sanssecours.github.io/Rainbow-Dash.tmbundle
| * | Copyright update.Georg Brandl2017-01-2228-28/+28
| | |
| * | Add support for partials and path segments for Handlebars.Christian Hammond2016-11-0430-0/+2120
| / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This introduces support for some missing features to the Handlebars lexer: Partials and path segments. Partials mostly appeared to work before, but the `>` in `{{> ... }}` would appear as a syntax error, as could other components of the partial. This change introduces support for: * Standard partials: `{{> partialName}}` * Partials with parameters: `{{> partialName varname="value"}}` * Ddynamic partials: `{{> (partialFunc)}}` * Ddynamic partials with lookups: `{{> (lookup ../path "partialName")}}` * Partial blocks: `{{> @partial-block}}` * Inline partials: `{{#*inline}}..{{/inline}}` It also introduces support for path segments, which can reference content in the current context or in a parent context. For instance, `this.name`, `this/name`, `./name`, `../name`, `this/name`, etc. These are all now tracked as variables.
* | Stata lexer and styles improvements and bug fixesMauricio Caceres Bravo2018-12-184-39/+86
|/ | | | | | | | - Nested comments correctly highlighted. - Globals and locals correctly nested inside each other and strings. - Extended locals and stored results correctly highlighted. - Keywords and operators correctly highlighted. - Parentheses and functions correctly highlighted.
* Removed commented out test code.Mauricio Caceres2016-06-022-4/+0
|
* Added syntax support and (very simple) styles for SAS and StataMauricio Caceres2016-05-092-0/+82
|
* Rename ansilist that now is a set, slipped though PR 531 reviewMatthias Bussonnier2016-02-141-1/+1
|
* Add tokens for string affixes and heredoc delimiters. Add lexing for them in ↵Miikka Salminen2016-02-061-0/+2
| | | | C/C++, Perl, PHP, Python and Ruby. Update my old style Lovelace accordingly.
* Merged birkenfeld/pygments-main into defaultMiikka Salminen2016-02-031-0/+2
|\
| * Merged birkenfeld/pygments-main into defaultMiikka Salminen2016-01-201-0/+2
| |\
| | * Added support and documentation for magic method and variable tokens. ReflectedMiikka Salminen2015-10-231-0/+2
| | | | | | | | | | | | | | | this change in an updated version of my older style, Lovelace. Added Python lexing for Python's magic methods and variables.
* | | Update ArduinoStyleEdoardo Tenani2016-01-271-6/+6
| | |
* | | Register arduino styleEdoardo Tenani2016-01-271-0/+1
| | |
* | | Change Keyword Type highlighting to use color #00688B, like perldoc.org's ↵alaska2016-01-261-1/+1
|/ / | | | | | | highlighting of scalars and arrays (fixes #1202)
* | "make check" style fixes.Georg Brandl2016-01-161-0/+3
|/
* Cleanups in preparation for 2.1 release.Tim Hatch2015-10-141-1/+2
|
* Added Algol and Algol_nu style (#1090).Georg Brandl2015-03-083-0/+128
|
* Changelog for lovelace style.Georg Brandl2015-03-081-2/+3
|
* Added a new style: Lovelace.Miikka Salminen2015-03-072-0/+90
|
* Add arduino lexer and styleEdoardo Tenani2015-01-281-0/+97
|
* Copyright year update.Georg Brandl2015-01-2124-24/+24
|
* Update ElixirLexer and example_elixir.exAlexei Sholik2014-06-0524-0/+1717
Elixir syntax has evolved quite significantly since the initial lexer was written. In this update I have rewritten most of the code to support modern Elixir (as of v0.14.0-dev). The example file has also been updated to give an quick overview of most of the language constructs.