diff options
author | gbrandl <devnull@localhost> | 2009-07-24 07:46:58 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2009-07-24 07:46:58 +0200 |
commit | d88deabb6a609f24025cc40ae4ebca686bcb5031 (patch) | |
tree | ab60017d62561935789b6bc6d0b719e1601c7d1a | |
parent | d7e014b733ea6b4463f97753e38528fa89abd3f8 (diff) | |
download | pygments-d88deabb6a609f24025cc40ae4ebca686bcb5031.tar.gz |
#425: remove merge turd.
-rw-r--r-- | pygments/lexers/templates.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py index 2677f965..e81a0c5d 100644 --- a/pygments/lexers/templates.py +++ b/pygments/lexers/templates.py @@ -427,19 +427,11 @@ class MakoLexer(RegexLexer): (r'''(?sx) (.+?) # anything, followed by: (?: -<<<<<<< local - (?<=\n)(?=%|\#\#) |# an eval or comment line - (?=\#\*) | # multiline comment - (?=</?%) | # a python block - # call start or end - (?=\$\{) | # a substitution -======= (?<=\n)(?=%|\#\#) | # an eval or comment line (?=\#\*) | # multiline comment (?=</?%) | # a python block # call start or end (?=\$\{) | # a substitution ->>>>>>> other (?<=\n)(?=\s*%) | # - don't consume (\\\n) | # an escaped newline |