Closed k0kubun closed 8 years ago
Fixing the issue reported by @yatmsu:
# input %div{ id: 60 } # output <div id='<'>
In Temple, value of [:static, value] must be String. With String#concat in Temple::Filters::StaticMerger, Fixnum(60) is converted to "<" like #chr.
value
[:static, value]
String
String#concat
Temple::Filters::StaticMerger
Fixnum
60
"<"
#chr
Fixing the issue reported by @yatmsu:
In Temple,
value
of[:static, value]
must beString
. WithString#concat
inTemple::Filters::StaticMerger
,Fixnum
(60
) is converted to"<"
like#chr
.