Index: app/views/news/_news.rhtml =================================================================== --- app/views/news/_news.rhtml (revision 4351) +++ app/views/news/_news.rhtml (working copy) @@ -2,5 +2,5 @@ <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %> <%= "(#{news.comments_count} #{lwr(:label_comment, news.comments_count).downcase})" if news.comments_count > 0 %>
-<% unless news.summary.blank? %><%=h news.summary %>
<% end %> +<% unless news.summary.blank? %><%= textilizable(news.summary) %>
<% end %> <%= authoring news.created_on, news.author %>

Index: app/views/news/show.rhtml =================================================================== --- app/views/news/show.rhtml (revision 4351) +++ app/views/news/show.rhtml (working copy) @@ -17,7 +17,7 @@ <% end %> -

<% unless @news.summary.empty? %><%=h @news.summary %>
<% end %> +

<% unless @news.summary.empty? %><%= textilizable(@news.summary) %>
<% end %> <%= authoring @news.created_on, @news.author %>

<%= textilizable(@news.description) %>
Index: app/views/documents/_document.rhtml =================================================================== --- app/views/documents/_document.rhtml (revision 4351) +++ app/views/documents/_document.rhtml (working copy) @@ -1,3 +1,3 @@

<%= link_to h(document.title), :controller => 'documents', :action => 'show', :id => document %>
-<% unless document.description.blank? %><%=h(truncate(document.description, 250)) %>
<% end %> -<%= format_time(document.created_on) %>

\ No newline at end of file +<% unless document.description.blank? %><%= textilizable(truncate(document.description, 250), :project => document.project) %>
<% end %> +<%= format_time(document.created_on) %>