diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | pygments/lexers/_robotframeworklexer.py | 2 |
3 files changed, 4 insertions, 0 deletions
@@ -56,6 +56,7 @@ Other contributors, listed alphabetically, are: * Brian R. Jackson -- Tea lexer * Dennis Kaarsemaker -- sources.list lexer * Igor Kalnitsky -- vhdl lexer +* Pekka Klärck -- Robot Framework lexer * Eric Knibbe -- Lasso lexer * Adam Koprowski -- Opa lexer * Benjamin Kowarsch -- Modula-2 lexer @@ -25,6 +25,7 @@ Version 1.6 * Mscgen (PR#80) * Racket (PR#94) * Rdoc (PR#99) + * Robot Framework (PR#137) * Rust (PR#67) * Smali (Dalvik assembly) * SourcePawn (PR#39) diff --git a/pygments/lexers/_robotframeworklexer.py b/pygments/lexers/_robotframeworklexer.py index e4126b82..79a117f1 100644 --- a/pygments/lexers/_robotframeworklexer.py +++ b/pygments/lexers/_robotframeworklexer.py @@ -45,6 +45,8 @@ class RobotFrameworkLexer(Lexer): For `Robot Framework <http://robotframework.org>`_ test data. Supports both space and pipe separated plain text formats. + + *New in Pygments 1.6.* """ name = 'RobotFramework' aliases = ['RobotFramework', 'robotframework'] |