comparison app/views/pastes/show.html.erb @ 60:285cce9725bf

Added space to blank lines. Otherwise for some reason prettify prints `Â` on those lines.
author Edho Arief <edho@myconan.net>
date Thu, 04 Oct 2012 07:15:19 +0700
parents f957ce997ff0
children d100218b96c9
comparison
equal deleted inserted replaced
59:1833de28583a 60:285cce9725bf
1 <% provide :title, 'Show' %> 1 <% provide :title, 'Show' %>
2 <div class="page-header"> 2 <div class="page-header">
3 <h1>Paste</h1> 3 <h1>Paste</h1>
4 </div> 4 </div>
5 <pre class="prettyprint linenums"><%= @paste.paste %></pre> 5 <pre class="prettyprint linenums"><%= @paste.paste.gsub(/^$/, ' ') %></pre>
6 6
7 <ul class="nav nav-pills"> 7 <ul class="nav nav-pills">
8 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li> 8 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li>
9 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li> 9 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li>
10 <li><%= link_to 'More Paste', root_path %></li> 10 <li><%= link_to 'More Paste', root_path %></li>