diff options
author | Georg Brandl <georg@python.org> | 2010-09-12 19:49:45 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-09-12 19:49:45 +0200 |
commit | 92d26cffc4981c1d5615652977860a29e7384c12 (patch) | |
tree | 5a3c88e863776efb42f4f4076d35bcfce3878d34 /pygments | |
parent | 717b67d975bb80ed162b0f588fa2c87bda5cb8f3 (diff) | |
download | pygments-92d26cffc4981c1d5615652977860a29e7384c12.tar.gz |
Add credit and changelog entry for JBST lexer.
Diffstat (limited to 'pygments')
-rw-r--r-- | pygments/lexers/web.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py index 9ab9d4f2..9bb34f50 100644 --- a/pygments/lexers/web.py +++ b/pygments/lexers/web.py @@ -1670,8 +1670,10 @@ class CoffeeScriptLexer(RegexLexer): class JbstLexer(RegexLexer): """ - Lexer for JsonML+Browser-Side Template (JSBT) markup with JavaScript code blocks. - http://jsonml.org/jbst/ + Lexer for JsonML+Browser-Side Template (JBST) markup with JavaScript code blocks. + See http://jsonml.org/jbst/. + + *New in Pygments 1.4.* """ name = 'JBST' |