summaryrefslogtreecommitdiff
path: root/pygments/lexers/web.py
diff options
context:
space:
mode:
authorTim Hatch <tim@timhatch.com>2014-05-15 16:58:46 -0700
committerTim Hatch <tim@timhatch.com>2014-05-15 16:58:46 -0700
commit919938e38d438dbcba6ed64423fd8f7375a0f59e (patch)
treef99125be99b3f070f6dc166ff80a38004ed72377 /pygments/lexers/web.py
parent583ca505dcf138b05b99ee4bee9a545dd9130356 (diff)
parent3c8f0aed8af0456fc7834a681fe17c792c7dca1d (diff)
downloadpygments-919938e38d438dbcba6ed64423fd8f7375a0f59e.tar.gz
Merged in jaingaurav2/pygments-main (pull request #351)
Fix some lines to be within 90 characters
Diffstat (limited to 'pygments/lexers/web.py')
-rw-r--r--pygments/lexers/web.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py
index 2a80403a..550c6242 100644
--- a/pygments/lexers/web.py
+++ b/pygments/lexers/web.py
@@ -2499,6 +2499,7 @@ class CoffeeScriptLexer(RegexLexer):
(r'"', String, '#pop'),
(r'\\.|\'', String), # double-quoted string don't need ' escapes
(r'#{', String.Interpol, "interpoling_string"),
+ (r'#', String),
include('strings')
],
'sqs': [
@@ -2510,6 +2511,7 @@ class CoffeeScriptLexer(RegexLexer):
(r'"""', String, '#pop'),
(r'\\.|\'|"', String), # no need to escape quotes in triple-string
(r'#{', String.Interpol, "interpoling_string"),
+ (r'#', String),
include('strings'),
],
'tsqs': [