<%= form_for comment, :html => { :id => "edit_comment_#{comment.short_id}" } do |f| %> <% if comment.errors.any? %> <%= errors_for comment %> <% end %> <%= hidden_field_tag "story_id", comment.story.short_id %> <% if comment.parent_comment %> <%= hidden_field_tag "parent_comment_short_id", comment.parent_comment.short_id %> <% end %>
<%= text_area_tag "comment", comment.comment, :rows => 5, :style => "width: 100%;", :autocomplete => "off" %>

Markdown formatting available
<%= button_tag "#{comment.new_record?? "Post" : "Update"}", :class => "comment-post", :type => "button" %>   <%= button_tag "Preview", :class => "comment-preview", :type => "button" %> <% if local_assigns[:cancellable] %>   <%= button_tag "Cancel", :class => "comment-cancel", :type => "button" %> <% end %>
<%= render :partial => "global/markdownhelp" %>

<% end %> <% if defined?(show_comment) && show_comment.valid? %>
<%= render "comments/comment", :comment => show_comment %>
<% end %>