mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
11 lines
204 B
Ruby
11 lines
204 B
Ruby
def render(*)
|
|
'<div class="render"></div>'
|
|
end
|
|
|
|
def link_to(a, b, *c)
|
|
"<a href='" << b << ">".freeze << a << '</div>'.freeze
|
|
end
|
|
|
|
def image_tag(*)
|
|
'<img src="https://github.com/favicon.ico" />'
|
|
end
|