1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/benchmark/etc/real_sample.rb

12 lines
204 B
Ruby
Raw Normal View History

2015-11-03 00:31:29 +09:00
def render(*)
'<div class="render"></div>'
end
2015-11-03 10:30:44 +09:00
def link_to(a, b, *c)
"<a href='" << b << ">".freeze << a << '</div>'.freeze
2015-11-03 00:31:29 +09:00
end
def image_tag(*)
'<img src="https://github.com/favicon.ico" />'
end