<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments-git.git/tests/examplefiles, branch bug/angular-html</title>
<subtitle>github.com: pygments/pygments.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/'/>
<entry>
<title>Update Fennel keywords to catch up to version 0.6.0.</title>
<updated>2020-09-07T05:57:03+00:00</updated>
<author>
<name>Phil Hagelberg</name>
<email>phil@hagelb.org</email>
</author>
<published>2020-09-05T15:54:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=c4a3b82967dd9fc78018fae8a49162ec19c1ee65'/>
<id>c4a3b82967dd9fc78018fae8a49162ec19c1ee65</id>
<content type='text'>
Remove support for single-quoted strings.

Update fennelview example to latest version of library.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove support for single-quoted strings.

Update fennelview example to latest version of library.
</pre>
</div>
</content>
</entry>
<entry>
<title>Overhaul the MySQL lexer (#1527)</title>
<updated>2020-09-06T12:40:17+00:00</updated>
<author>
<name>Kurt McKee</name>
<email>contactme@kurtmckee.org</email>
</author>
<published>2020-09-06T12:40:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=b3f1691125bf611cc073fa0ad3303518ae04c094'/>
<id>b3f1691125bf611cc073fa0ad3303518ae04c094</id>
<content type='text'>
* Overhaul the MySQL lexer

Fixes #975, #1063, #1453

Changes include:

Documentation
-------------

* Note in the lexer docstring that Oracle MySQL is the target syntax.
  MariaDB syntax is not a target (though there is significant overlap).

Unit tests
----------

* Add 140 unit tests for MySQL.

Literals
--------

* Hexadecimal/binary/date/time/timestamp literals are supported.
* Integer mantissas are supported for scientific notation.
* In-string escapes are now tokenized properly.
* Support the "unknown" constant.

Comments
--------

* Optimizer hints are now supported, and keywords are
  recognized and tokenized as preprocessor instructions.
* Remove nested multi-line comment support, which is no
  longer supported in MySQL.

Variables
---------

* Support the '@' prefix for variable names.
* Lift restrictions on characters in unquoted variable names.
  (MySQL does not impose a restriction on lead characters.)
* Support single/double/backtick-quoted variable names, including escapes.
* Support the '@@' prefix for system variable names.
* Support '?' as a variable so people can demonstrate prepared statements.

Keywords
--------

* Keyword / data type / function are now in a separate, auto-updating file.
* Support 25 additional data types (including spatial and JSON types).
* Support 460 additional MySQL keywords.
* Support 372 MySQL functions.
  Explicit function support resolves a bug that causes non-function
  items to be treated as functions simply because they have a trailing
  opening parenthesis.
* Support exceptions for the 'SET' keyword, which is both a datatype and
  a keyword depending on context.

Schema object names
-------------------

* Support Unicode in MySQL schema object names.
* Support parsing of backtick-quoted schema object name escapes.
  (Escapes do not produce a distinct token type at this time.)

Operators
---------

* Remove non-operator characters from the list of operators.
* Remove non-punctuation characters from the list of punctuation.

* Cleanup items based on feedback

* Remove an unnecessary optional newline lookahead for single-line comments</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Overhaul the MySQL lexer

Fixes #975, #1063, #1453

Changes include:

Documentation
-------------

* Note in the lexer docstring that Oracle MySQL is the target syntax.
  MariaDB syntax is not a target (though there is significant overlap).

Unit tests
----------

* Add 140 unit tests for MySQL.

Literals
--------

* Hexadecimal/binary/date/time/timestamp literals are supported.
* Integer mantissas are supported for scientific notation.
* In-string escapes are now tokenized properly.
* Support the "unknown" constant.

Comments
--------

* Optimizer hints are now supported, and keywords are
  recognized and tokenized as preprocessor instructions.
* Remove nested multi-line comment support, which is no
  longer supported in MySQL.

Variables
---------

* Support the '@' prefix for variable names.
* Lift restrictions on characters in unquoted variable names.
  (MySQL does not impose a restriction on lead characters.)
* Support single/double/backtick-quoted variable names, including escapes.
* Support the '@@' prefix for system variable names.
* Support '?' as a variable so people can demonstrate prepared statements.

Keywords
--------

* Keyword / data type / function are now in a separate, auto-updating file.
* Support 25 additional data types (including spatial and JSON types).
* Support 460 additional MySQL keywords.
* Support 372 MySQL functions.
  Explicit function support resolves a bug that causes non-function
  items to be treated as functions simply because they have a trailing
  opening parenthesis.
* Support exceptions for the 'SET' keyword, which is both a datatype and
  a keyword depending on context.

Schema object names
-------------------

* Support Unicode in MySQL schema object names.
* Support parsing of backtick-quoted schema object name escapes.
  (Escapes do not produce a distinct token type at this time.)

Operators
---------

* Remove non-operator characters from the list of operators.
* Remove non-punctuation characters from the list of punctuation.

* Cleanup items based on feedback

* Remove an unnecessary optional newline lookahead for single-line comments</pre>
</div>
</content>
</entry>
<entry>
<title>Add lexer for PsySH console for PHP (#1438)</title>
<updated>2020-09-04T16:03:41+00:00</updated>
<author>
<name>Ben Ramsey</name>
<email>ben@benramsey.com</email>
</author>
<published>2020-09-04T16:03:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=91d4920473217eada4a41520df680467988c2b07'/>
<id>91d4920473217eada4a41520df680467988c2b07</id>
<content type='text'>
This lexer is based on the PythonConsoleLexer and provides the ability
to highlight console input and output for PsySH, a developer console and
REPL for PHP. See https://psysh.org.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This lexer is based on the PythonConsoleLexer and provides the ability
to highlight console input and output for PsySH, a developer console and
REPL for PHP. See https://psysh.org.</pre>
</div>
</content>
</entry>
<entry>
<title>Add lexer for Pointless (#1494)</title>
<updated>2020-08-23T06:12:50+00:00</updated>
<author>
<name>Avery N. Nortonsmith</name>
<email>averynortonsmith@fastmail.com</email>
</author>
<published>2020-08-23T06:12:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=90555f7e73ccf9858d0cda7cb31b9fb727bf5adf'/>
<id>90555f7e73ccf9858d0cda7cb31b9fb727bf5adf</id>
<content type='text'>
* add lexer for pointless

* lexer docstring formatting

* added link to languages doc

* update authors

* update version

* added double string

* added upval keyword

* simplify ptls example code

* rename doubleString -&gt; multiString</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* add lexer for pointless

* lexer docstring formatting

* added link to languages doc

* update authors

* update version

* added double string

* added upval keyword

* simplify ptls example code

* rename doubleString -&gt; multiString</pre>
</div>
</content>
</entry>
<entry>
<title>Added BARE schema lexer (#1488)</title>
<updated>2020-08-22T13:56:05+00:00</updated>
<author>
<name>Martijn Braam</name>
<email>martijn@brixit.nl</email>
</author>
<published>2020-08-22T13:56:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=23823a173b01f349b6772b154d1f8447c1f0c0c1'/>
<id>23823a173b01f349b6772b154d1f8447c1f0c0c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a PromQL lexer (#1506)</title>
<updated>2020-08-19T09:01:45+00:00</updated>
<author>
<name>Pablo SEMINARIO</name>
<email>pablo@seminar.io</email>
</author>
<published>2020-08-19T09:01:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=21240043da9c8c2aa5222615877de4ea99e047bb'/>
<id>21240043da9c8c2aa5222615877de4ea99e047bb</id>
<content type='text'>
Including tests and an example.promql file.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Including tests and an example.promql file.</pre>
</div>
</content>
</entry>
<entry>
<title>Update for Csound 6.15.0 (#1509)</title>
<updated>2020-08-17T07:02:41+00:00</updated>
<author>
<name>Nate Whetsell</name>
<email>nathan.whetsell@gmail.com</email>
</author>
<published>2020-08-17T07:02:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=e59cdb5d26079a2fb35434dd7461db672955c2f1'/>
<id>e59cdb5d26079a2fb35434dd7461db672955c2f1</id>
<content type='text'>
* Update for Csound 6.15.0

* Update comment</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update for Csound 6.15.0

* Update comment</pre>
</div>
</content>
</entry>
<entry>
<title>Add Arrow lexer (#1481)</title>
<updated>2020-06-21T07:09:36+00:00</updated>
<author>
<name>Ken</name>
<email>kenny2minecraft@gmail.com</email>
</author>
<published>2020-06-21T07:09:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=18d1f8f3afd60df65da736a1393b534d245cb58a'/>
<id>18d1f8f3afd60df65da736a1393b534d245cb58a</id>
<content type='text'>
* Add Arrow lexer

* Pass tests: raw string for regex

* Make requested changes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add Arrow lexer

* Pass tests: raw string for regex

* Make requested changes</pre>
</div>
</content>
</entry>
<entry>
<title>add Singularity lexer (#1285)</title>
<updated>2020-06-01T14:26:12+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2020-06-01T14:26:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=ad3c2ed7c3b143c5cda7ab37824f7286e30f1a58'/>
<id>ad3c2ed7c3b143c5cda7ab37824f7286e30f1a58</id>
<content type='text'>
Co-authored-by: Bryton Hall &lt;email@bryton.io&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Bryton Hall &lt;email@bryton.io&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Add GDScript lexer (#1457)</title>
<updated>2020-06-01T12:48:05+00:00</updated>
<author>
<name>Paweł Fertyk</name>
<email>pfertyk@users.noreply.github.com</email>
</author>
<published>2020-06-01T12:48:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments-git.git/commit/?id=e5dc231aa0d780395436e55c621e22dacfaf97de'/>
<id>e5dc231aa0d780395436e55c621e22dacfaf97de</id>
<content type='text'>
* Added GDScript lexer

* Fix regular expressions in GDScript lexer

* Update GDScript lexer with the current version from Godot docs

* Add tests for GDScript lexer

* Update authors

* Add an example file for GDScript

* Implement analyze_text for GAP and GDScript

* Fix example file name in tests

* Update license

Co-authored-by: Daniel J. Ramirez &lt;djrmuv@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Added GDScript lexer

* Fix regular expressions in GDScript lexer

* Update GDScript lexer with the current version from Godot docs

* Add tests for GDScript lexer

* Update authors

* Add an example file for GDScript

* Implement analyze_text for GAP and GDScript

* Fix example file name in tests

* Update license

Co-authored-by: Daniel J. Ramirez &lt;djrmuv@gmail.com&gt;</pre>
</div>
</content>
</entry>
</feed>
