[Tools] Atom snippets
Atom snippets
https://gist.github.com/sdlong/e2188e26ad1a0231ae29
輸入簡碼,按下tab
<!-- lt -->
<% link_to("", path) %>
<!-- ltd -->
<%= link_to("", path, method: :delete, data: { confirm: "Are you sure?" } ) %>
<!-- lti -->
<% link_to(path, class: "btn btn-primary") do %>
<i class="icon"></i>
<% end %>
<!-- er -->
<% %>
<!-- pe -->
<%= %>
<!-- pc -->
<%# %>
<!-- form -->
<%= simple_form_for(@things) do |f| %>
block
<% end %>
<!-- each -->
<% @things.each do |thing| %>
block
<% end %>
<!-- fp -->
<%= f.input %>
<!-- st -->
<%= f.submit "word", class: "btn", data: { disable_with: "submiting..." } %>
<!-- end -->
<% end %>
<!-- else -->
<% else %>
<!-- if -->
<% if condition %>
block
<% end %>
<!-- ife -->
<% if condition %>
true-block
<% else %>
false-block
<% end %>
<!-- ntd -->
<%# TODO : something %>
留言