Now can handle tags with numbers in them... like %h1

git-svn-id: svn://hamptoncatlin.com/haml/trunk@4 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
hcatlin 2006-07-02 02:10:54 +00:00
parent 9b9c0dd24b
commit b03cf78f5b
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ module HAML
end
def render_tag(line)
line.scan(/[%]([-_a-z]+)([-_a-z.\#]*)([=]?)([^\n]*)/).each do |tag_name, attributes, action, value|
line.scan(/[%]([-_a-z0-9]+)([-_a-z.\#]*)([=]?)([^\n]*)/).each do |tag_name, attributes, action, value|
val = template_eval(value)
attribute_hash = parse_attributes(attributes)
attribute_hash.merge!(val) && val = nil if val.class == Hash