summaryrefslogtreecommitdiff
path: root/pygments/lexers/gsql.py
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2023.Matthäus G. Chajdas2023-03-291-1/+1
|
* all: style fixesGeorg Brandl2022-10-271-18/+30
|
* Rework URL information in lexers.Matthäus G. Chajdas2022-03-201-1/+2
| | | | | | | | This commit adds a new url field to a lexer, which can be used to link to the language website, instead of relying on having the link in either languages.rst or the docstring of the lexer. Additionally, it changes the languages.rst file to auto-generate the list of lexers from the actual source code, using the provided URL.
* Happy new year.Georg Brandl2022-01-251-1/+1
|
* GSQL lexer syntax changes (#2006)Gregory Grubbs2021-12-301-5/+4
| | | | | | | | | * Add square, angle and single underscore to punct; simplify string regex * Add dollar as operator in LOAD DDL; add pipe as op for resused edge names * Add to test file to test recent lexer fixes * Added PR# to new test cases
* Fix single and multiline comment regex for GSQL (#2002)Gregory Grubbs2021-12-281-14/+14
| | | | | * Fix single and multiline comment regex for GSQL * Add examples for end-of-line and multiline comments with embedded keywords
* Fix a few make check failures.Matthäus G. Chajdas2021-08-151-1/+1
|
* Added lexer for parsing GSQL files (#1866)DanBarkus2021-08-081-0/+92
| | | | | | | | | | | | | | | * Added GSQL lexer * encased keywords in 'words' function added link to language reference * added additional word functions * Added copyright annotation Removed commented out string * re-built test output file * Updated words to Keywords
* Revert "Added GSQL lexer (#1809)"Matthäus G. Chajdas2021-07-181-85/+0
| | | | This reverts commit 710cac79c34412e551a4a92bcd7dd07d5d770922.
* Added GSQL lexer (#1809)DanBarkus2021-07-181-0/+85
* Added GSQL lexer * encased keywords in 'words' function added link to language reference * added additional word functions