diff --git a/app/views/notes/_note_details.rhtml b/app/views/notes/_note_details.rhtml
index bd70567a..bd83f112 100644
--- a/app/views/notes/_note_details.rhtml
+++ b/app/views/notes/_note_details.rhtml
@@ -1,5 +1,5 @@
<% note = note_details -%>
-
<%= format_note(note.body) %>
+<%= Tracks::Utils.render_text(note.body) %>
<% unless project.description.blank? -%>
- <%= format_note(project.description) %>
+ <%= Tracks::Utils.render_text(project.description) %>
<% end -%>
diff --git a/app/views/todos/mobile_show_notes.rhtml b/app/views/todos/mobile_show_notes.rhtml
index ed9ca787..1000a75c 100644
--- a/app/views/todos/mobile_show_notes.rhtml
+++ b/app/views/todos/mobile_show_notes.rhtml
@@ -1,5 +1,5 @@
<%= t('todos.next_action_description') + " (" + link_to(t('common.go_back'), @return_path) %>)
<%= link_to @todo.description, todo_path(@todo, :format => 'm') -%>
<%= t('todos.notes') %>
-<%= format_note(@todo.notes) %>
+<%= Tracks::Utils.render_text(@todo.notes) %>
<%= link_to t('common.back'), @return_path %>