<%= content_tag(:h2, post.title) %>

Markdown:

<%= content_tag(:pre, post.markdown) %>

Body:

<%= post.body.html_safe if post.body.present? %>
<%= link_to 'Edit', edit_post_path(post) %> <%= link_to 'Delete', post_path(post), :method => :delete %>