>
+
">
<% if current_user %>
<%= link_to current_user.name, current_user %>
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index ab867e4..56ece88 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -102,5 +102,9 @@
About:
- <%= @user.about.blank? ? "nothing".html_safe : render_md(@user.about).html_safe %>
+ <% if @user.about.blank? %>
+ nothing
+ <% else %>
+ <%= render_md(@user.about).html_safe %>
+ <% end %>
\ No newline at end of file