summaryrefslogtreecommitdiff
path: root/pygments/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove Python 2 compatibilityGeorg Brandl2020-01-041-2/+1
| | | | | * remove 2/3 shims in pygments.util * update setup.py metadata
* keep version number in one place, dont do the "x.y.z+" anymoreGeorg Brandl2019-11-291-1/+1
|
* Post-release updates; also tweak checklistGeorg Brandl2019-11-291-1/+1
|
* update changelog, bump version to 2.5.2Georg Brandl2019-11-291-1/+1
|
* Bump version to 2.5.1.2.5.1Matthäus G. Chajdas2019-11-261-1/+1
|
* Bump version number.2.5.0Matthäus G. Chajdas2019-11-261-1/+1
|
* Update hg/bitbucket -> git/github everywhere.Georg Brandl2019-11-101-3/+3
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* Update changelog, prepare 2.4.2 release.Georg Brandl2019-05-281-1/+1
|
* Update CHANGES and prepare for 2.4.1 release.Matth?us G. Chajdas2019-05-241-1/+1
|
* Bump version to 2.4.0.Matth?us G. Chajdas2019-05-081-1/+1
|
* Prepare 2.3.1 release.Matth?us G. Chajdas2018-12-161-1/+1
|
* Update changelog and version number.Matth?us G. Chajdas2018-11-241-1/+1
|
* Bump to 2.2.0 final.2.2.0Georg Brandl2017-01-221-1/+1
|
* Copyright update.Georg Brandl2017-01-221-1/+1
|
* Add support for partials and path segments for Handlebars.Christian Hammond2016-11-041-0/+90
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.