summaryrefslogtreecommitdiff
path: root/pygments/lexers/csound.py
diff options
context:
space:
mode:
authorNathan Whetsell <nathan.whetsell@gmail.com>2017-08-30 15:22:42 -0400
committerNathan Whetsell <nathan.whetsell@gmail.com>2017-08-30 15:22:42 -0400
commitd01fc1fc022d059d8cf30830460c3ad132fb7260 (patch)
treedc328c1dd2fe562ce740f4746810acb0cf978e4f /pygments/lexers/csound.py
parent32c622b101b192d733b03a0648f42af3d680ad43 (diff)
downloadpygments-git-d01fc1fc022d059d8cf30830460c3ad132fb7260.tar.gz
Style nit
Diffstat (limited to 'pygments/lexers/csound.py')
-rw-r--r--pygments/lexers/csound.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/csound.py b/pygments/lexers/csound.py
index 3294d2d3..b86de091 100644
--- a/pygments/lexers/csound.py
+++ b/pygments/lexers/csound.py
@@ -420,7 +420,7 @@ class CsoundDocumentLexer(RegexLexer):
(r'<\s*CsInstruments', Name.Tag, ('orchestra', 'tag')),
(r'<\s*CsScore', Name.Tag, ('score', 'tag')),
- (r'<\s*[hH][tT][mM][lL]', Name.Tag, ('HTML', 'tag')),
+ (r'<\s*[Hh][Tt][Mm][Ll]', Name.Tag, ('HTML', 'tag')),
(r'<\s*[\w:.-]+', Name.Tag, 'tag'),
(r'<\s*/\s*[\w:.-]+\s*>', Name.Tag)
@@ -435,8 +435,8 @@ class CsoundDocumentLexer(RegexLexer):
(r'(.|\n)+?(?=<\s*/\s*CsScore\s*>)', using(CsoundScoreLexer))
],
'HTML': [
- (r'<\s*/\s*[hH][tT][mM][lL]\s*>', Name.Tag, '#pop'),
- (r'(.|\n)+?(?=<\s*/\s*[hH][tT][mM][lL]\s*>)', using(HtmlLexer))
+ (r'<\s*/\s*[Hh][Tt][Mm][Ll]\s*>', Name.Tag, '#pop'),
+ (r'(.|\n)+?(?=<\s*/\s*[Hh][Tt][Mm][Ll]\s*>)', using(HtmlLexer))
],
'tag': [