summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-01-17 06:56:37 +0100
committerGeorg Brandl <georg@python.org>2014-01-17 06:56:37 +0100
commit10a9a14c81f973bd12b83b79e0b5cc997a42b07a (patch)
tree15658cf11f20ba89f3ddc9dbb80f1ed680c35b11 /pygments
parent8d58e854aea5a0061d4fd16e409d043fc402bacc (diff)
downloadpygments-10a9a14c81f973bd12b83b79e0b5cc997a42b07a.tar.gz
cirru: add to changelog
Diffstat (limited to 'pygments')
-rw-r--r--pygments/lexers/web.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py
index f270684a..a387abad 100644
--- a/pygments/lexers/web.py
+++ b/pygments/lexers/web.py
@@ -4167,6 +4167,7 @@ class QmlLexer(RegexLexer):
]
}
+
class CirruLexer(RegexLexer):
"""
Syntax rules of Cirru can be found at:
@@ -4176,6 +4177,8 @@ class CirruLexer(RegexLexer):
* using `""` to markup strings, allow `\` to escape
* using `$` as a shorthand for `()` till indentation end or `)`
* using indentations for create nesting
+
+ *New in Pygments 1.7.*
"""
name = 'Cirru'
@@ -4218,4 +4221,4 @@ class CirruLexer(RegexLexer):
(r'^\s*', Text.Whitespace, ('line', 'function')),
(r'^\s+$', Text.Whitespace),
]
- } \ No newline at end of file
+ }