_macros.rhtml

来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· RHTML 代码 · 共 16 行

RHTML
16
字号
<table cellspacing="1" cellpadding="0"><tr>  <th><%= _("Name")%></th>  <th><%= _("Description")%></th>  <th><%= _("Tag")%></th>  <th><%= _("Show Help")%></th></tr><% for macro in @macros.sort_by { |f| f.short_name } %><tr <%= alternate_class %>>  <td><%=h macro.display_name %> </td>  <td><%=h macro.description %></td>  <td><code>&lt;typo:<%=h macro.short_name %>&gt;</code></td>  <td class="operation"><%= link_to image_tag('go'), :action => 'macro_help', :id => macro.short_name %></td>    </tr>  <% end %></table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?