Skip to content

Instantly share code, notes, and snippets.

@totutote
Created May 30, 2012 02:50
Show Gist options
  • Save totutote/2833326 to your computer and use it in GitHub Desktop.
Save totutote/2833326 to your computer and use it in GitHub Desktop.
yasnippet rhtml
#name : <%= image_tag " ... ", :size => " ... ", :alt => " ... " %>
# --
<%= image_tag "${location}", :size=>"${size}", :alt => "${alt}" %>$0
#name : <%= link_to(image_tag(" ... ", :size=>" ... ", :alt=>" ... "), {:controller => " ... ", :action => " ... "}) %>
# --
<%= link_to(image_tag("${location}", :size=>"${size}", :alt=>"${alt}"), {:controller => "${controller}", :action => "${action}"}) %>$0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment