共 <%= @note.word_count %> 个字符
• <%= user_name_tag(@note.user) if !owner? @note %>
<%= l @note.created_at, format: :long %>
• <%= @note.hits %> 次阅读
• <%= @note.changes_count %> 次修改
<% if owner? @note %>
<%= link_to icon_tag("pencil"), edit_note_path(@note), title: "编辑" %>
<%= link_to icon_tag("trash"), note_path(@note), 'data-confirm' => "确定要删除么?", method: :delete %>
<% end %>
<% if @note.publish %>
<%= note_url(@note) %>
<% end %>
<% if !@note.publish %>
<% end %>
<%= markdown(@note.body) %>