diff --git a/app/views/tags/_show_bids.html.erb b/app/views/tags/_show_bids.html.erb
index e789979e1..ef6c5ad52 100644
--- a/app/views/tags/_show_bids.html.erb
+++ b/app/views/tags/_show_bids.html.erb
@@ -6,7 +6,7 @@
<%= l(:label_tags_bid) %>:<%= link_to "#{bid.name}",
:controller => "bids",:action => "show",:id => bid.id %>
- <%= l(:label_tags_bid_description) %>:<%= bid.description %>
+ <%= l(:label_tags_bid_description) %>:<%= textilizable bid.description %>
<%= bid.updated_on %>
diff --git a/app/views/tags/_show_contests.html.erb b/app/views/tags/_show_contests.html.erb
index 4eded773a..c711a36ea 100644
--- a/app/views/tags/_show_contests.html.erb
+++ b/app/views/tags/_show_contests.html.erb
@@ -6,7 +6,7 @@
<%= l(:label_tags_contest) %>:<%= link_to "#{contest.name}",
:controller => "contests",:action => "show_contest",:id => contest.id %>
- <%= l(:label_tags_contest_description) %>:<%= contest.description %>
+ <%= l(:label_tags_contest_description) %>:<%= textilizable contest.description %>
<%= contest.updated_on %>
diff --git a/app/views/tags/_show_courses.html.erb b/app/views/tags/_show_courses.html.erb
index c99e3e22d..1e118541b 100644
--- a/app/views/tags/_show_courses.html.erb
+++ b/app/views/tags/_show_courses.html.erb
@@ -5,7 +5,7 @@
<%= l(:label_course) %>:<%= link_to "#{course.name}",course_path(course) %>
- <%= l(:label_new_course_description) %>:<%= course.description %>
+ <%= l(:label_new_course_description) %>:<%= textilizable course.description %>
<%= course.updated_at %>
diff --git a/app/views/tags/_show_issues.html.erb b/app/views/tags/_show_issues.html.erb
index 399caf513..ea35dbff5 100644
--- a/app/views/tags/_show_issues.html.erb
+++ b/app/views/tags/_show_issues.html.erb
@@ -5,7 +5,7 @@
<%= l(:label_tags_issue) %><%= link_to "#{issue.subject}",:controller => "issues",:action => "show",:id => issue.id %>
- <%= l(:label_tags_issue_description) %>:<%= issue.description %>
+ <%= l(:label_tags_issue_description) %>:<%= textilizable issue.description %>
<% end %>
diff --git a/app/views/tags/_show_open_source_projects.html.erb b/app/views/tags/_show_open_source_projects.html.erb
index 8ea67f9a7..5f9dae299 100644
--- a/app/views/tags/_show_open_source_projects.html.erb
+++ b/app/views/tags/_show_open_source_projects.html.erb
@@ -6,7 +6,7 @@
<%= l(:label_tags_project_name) %><%= link_to "#{prj.name}",:controller => "open_source_projects",:action => "show",:id => prj.id %>
- <%= l(:label_tags_project_description) %><%= prj.short_description %>
+ <%= l(:label_tags_project_description) %><%= textilizable prj.short_description %>
diff --git a/app/views/tags/_show_projects.html.erb b/app/views/tags/_show_projects.html.erb
index 5dade07ef..7ed32cba1 100644
--- a/app/views/tags/_show_projects.html.erb
+++ b/app/views/tags/_show_projects.html.erb
@@ -6,7 +6,7 @@
<%= l(:label_tags_project_name) %><%= link_to "#{prj.name}",:controller => "projects",:action => "show",:id => prj.id %>
- <%= l(:label_tags_project_description) %><%= prj.description %>
+ <%= l(:label_tags_project_description) %><%= textilizable prj.description %>
diff --git a/app/views/tags/index.html.erb b/app/views/tags/index.html.erb
index a5cda9944..bf2c8c31c 100644
--- a/app/views/tags/index.html.erb
+++ b/app/views/tags/index.html.erb
@@ -41,8 +41,8 @@
:show_flag => @obj_flag}
%>
-
+
-
+
<% end %>