2012-12-13 55 views
0

我想知道是否可以使用Enmet/ZenCoding插件爲SublimeText2輕鬆標記ERB模板。使用Enmet和ERB

例如,你可以通常做:

span.goodbye{hi there!} - >選項 - ><span class="goodbye">hi there!</span>

有沒有辦法做這樣的事情:

span.goodbye{<%= @post.content%>} - >選項 - ><span class="goodbye"><%= @post.content %></span>

回答

1

實際上,span.goodbye{<%= @post.content%>}按需要工作。

但我建議你create a custom snippet,像"erb": "<%= |${child} %>"所以你可以寫縮寫是這樣的:

span.goodbye>erb{@post.content}

+0

謝謝!這正是我一直在尋找的:) – Brandon