Skip to content

Commit

Permalink
Merge 018a4a1 into 752058b
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungCatChen committed Oct 4, 2015
2 parents 752058b + 018a4a1 commit c552166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plim/lexer.py
Expand Up @@ -44,7 +44,7 @@
LINE_BREAK = '\\'

# Please note that in Plim all tag names are intentionally lower-cased
TAG_RULE = '(?P<html_tag>[a-z][a-z0-9]*)'
TAG_RULE = '(?P<html_tag>[a-z][a-z0-9-]*)'
TAG_RE = re.compile(TAG_RULE)
LINE_PARTS_RE = re.compile('(?P<indent>\s*)(?P<line>.*)\s*')
MAKO_FILTERS_TAIL_RE = re.compile('\|\s*(?P<filters>[a-zA-Z][_.a-zA-Z0-9]*(?:,\s*[a-zA-Z][_.a-zA-Z0-9]*)*)\s*$')
Expand Down

0 comments on commit c552166

Please sign in to comment.