summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--CHANGES1
-rw-r--r--pygments/lexers/web.py6
3 files changed, 6 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index cc422730..78f431b8 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -45,6 +45,7 @@ Other contributors, listed alphabetically, are:
* Mark Lee -- Vala lexer
* Ben Mabey -- Gherkin lexer
* Kirk McDonald -- D lexer
+* Stephen McKamey -- JBST lexer
* Lukas Meuser -- BBCode formatter, Lua lexer
* Paulo Moura -- Logtalk lexer
* Ana Nelson -- Ragel, ANTLR, R console lexers
diff --git a/CHANGES b/CHANGES
index ddbcdcfa..b191e9d3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -17,6 +17,7 @@ Version 1.4
* Ioke (#465)
* Java properties, split out of the INI lexer (#445)
* Scss (#509)
+ * JBST
- Performance improvements in the HTML formatter (#523).
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'