Show the first paragraph of the description
This commit is contained in:
9
app/helpers/text_helper.rb
Normal file
9
app/helpers/text_helper.rb
Normal file
@@ -0,0 +1,9 @@
|
||||
module TextHelper
|
||||
def first_paragraph(text)
|
||||
if text.blank?
|
||||
""
|
||||
else
|
||||
text.strip.split("\n").first
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -3,7 +3,7 @@
|
||||
<div class="small-12 medium-8 column">
|
||||
<div class="legislation-text">
|
||||
<h3><%= link_to process.title, process %></h3>
|
||||
<p><%= process.description %></p>
|
||||
<%= simple_format(first_paragraph(process.description)) %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user