diff options
author | Georg Brandl <georg@python.org> | 2014-03-04 14:44:49 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-04 14:44:49 +0100 |
commit | 2f43ee4c80b699800b7f7962b04aa9fbb35e65fa (patch) | |
tree | be825afc4ec44ebf8ffb883d95ab3ba447be4744 | |
parent | 18348a61d7e90b03a624fdc78fafdcb46b92307d (diff) | |
download | pygments-2f43ee4c80b699800b7f7962b04aa9fbb35e65fa.tar.gz |
Add authors/changelog for Idris, exempt the literate lexer from stripnl test
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | tests/test_basic_api.py | 3 |
3 files changed, 4 insertions, 1 deletions
@@ -115,6 +115,7 @@ Other contributors, listed alphabetically, are: * Benjamin Peterson -- Test suite refactoring * Dominik Picheta -- Nimrod lexer * Clément Prévost -- UrbiScript lexer +* raichoo -- Idris lexer * Kashif Rasul -- CUDA lexer * Justin Reidy -- MXML lexer * Norman Richards -- JSON lexer @@ -35,6 +35,7 @@ Version 2.0 * Eiffel (PR#273) * Cirru (PR#275) * ColdFusion CFC (PR#283) + * Idris (PR#210) - New styles: "xcode" and "igor", similar to the default highlighting of the respective IDEs. diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py index 78227d2f..e89b5c31 100644 --- a/tests/test_basic_api.py +++ b/tests/test_basic_api.py @@ -100,7 +100,8 @@ def test_lexer_options(): 'SqliteConsoleLexer', 'MatlabSessionLexer', 'ErlangShellLexer', 'BashSessionLexer', 'LiterateHaskellLexer', 'LiterateAgdaLexer', 'PostgresConsoleLexer', 'ElixirConsoleLexer', 'JuliaConsoleLexer', - 'RobotFrameworkLexer', 'DylanConsoleLexer', 'ShellSessionLexer'): + 'RobotFrameworkLexer', 'DylanConsoleLexer', 'ShellSessionLexer', + 'LiterateIdrisLexer'): inst = cls(ensurenl=False) ensure(inst.get_tokens('a\nb'), 'a\nb') inst = cls(ensurenl=False, stripall=True) |