diff --git a/app/views/comments/_comment.html.erb b/app/views/comments/_comment.html.erb
index 7fbb915..286cf1b 100644
--- a/app/views/comments/_comment.html.erb
+++ b/app/views/comments/_comment.html.erb
@@ -11,7 +11,7 @@
- <%= render_mini_md(c.content).html_safe %>
+ <%= render_md(c.content).html_safe %>
\ No newline at end of file
diff --git a/app/views/comments/_new.html.erb b/app/views/comments/_new.html.erb
index 8188c41..cc894a4 100644
--- a/app/views/comments/_new.html.erb
+++ b/app/views/comments/_new.html.erb
@@ -1,5 +1,5 @@
New comment
<%= form_for [@post, @comment] do |f| %>
- <%= render partial: "md_editor", locals: {name: "comment[content]", content: @comment.content, mini: true} %>
+ <%= render partial: "md_editor", locals: {name: "comment[content]", content: @comment.content, mini: false} %>
<%= f.submit class: "btn blue" %>
<% end %>
\ No newline at end of file
diff --git a/app/views/comments/edit.html.erb b/app/views/comments/edit.html.erb
index 8af487f..16706cc 100644
--- a/app/views/comments/edit.html.erb
+++ b/app/views/comments/edit.html.erb
@@ -3,7 +3,7 @@
Edit comment
<%= form_for [@comment.blogpost, @comment] do |f| %>
- <%= render partial: "md_editor", locals: {name: "comment[content]", content: @comment.content, mini: true} %>
+ <%= render partial: "md_editor", locals: {name: "comment[content]", content: @comment.content, mini: false} %>
<%= f.submit "Update Comment", class: "btn blue left" %>
<% end %>
<%= button_to "Delete comment", [@comment.blogpost, @comment] , method: "delete", data: {confirm: "Delete comment forever?"}, class: "btn red right" %>