diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index f773726b9..d6d40160e 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -51,6 +51,10 @@ module ApplicationHelper
DText.parse(text)
end
+ def strip_dtext(text)
+ DText.strip(text)
+ end
+
def error_messages_for(instance_name)
instance = instance_variable_get("@#{instance_name}")
diff --git a/app/views/explore/posts/popular.html.erb b/app/views/explore/posts/popular.html.erb
index c8d24bff0..101fa020d 100644
--- a/app/views/explore/posts/popular.html.erb
+++ b/app/views/explore/posts/popular.html.erb
@@ -15,3 +15,7 @@
<% content_for(:page_title) do %>
Popular - <%= Danbooru.config.app_name %>
<% end %>
+
+<% content_for(:html_header) do %>
+
+<% end %>
\ No newline at end of file
diff --git a/app/views/pools/index.html.erb b/app/views/pools/index.html.erb
index e4fb55b39..cc1bf6168 100644
--- a/app/views/pools/index.html.erb
+++ b/app/views/pools/index.html.erb
@@ -42,3 +42,7 @@
<% content_for(:page_title) do %>
Pools - <%= Danbooru.config.app_name %>
<% end %>
+
+<% content_for(:html_header) do %>
+
+<% end %>
diff --git a/app/views/pools/show.html.erb b/app/views/pools/show.html.erb
index 53557eeed..0adcf2bf4 100644
--- a/app/views/pools/show.html.erb
+++ b/app/views/pools/show.html.erb
@@ -27,3 +27,7 @@
<% content_for(:page_title) do %>
Pool - <%= @pool.pretty_name %> - <%= Danbooru.config.app_name %>
<% end %>
+
+<% content_for(:html_header) do %>
+
+<% end %>
diff --git a/app/views/posts/index.html.erb b/app/views/posts/index.html.erb
index d4efe2263..149038fac 100644
--- a/app/views/posts/index.html.erb
+++ b/app/views/posts/index.html.erb
@@ -57,7 +57,9 @@
<%= content_for(:html_header) do %>
<% if @post_set.has_wiki? %>
-
+
+ <% else %>
+
<% end %>
<%= missed_post_search_count_js %>
<% if @post_set.hide_from_crawler? %>
diff --git a/app/views/posts/show.html.erb b/app/views/posts/show.html.erb
index 7a6f6ce19..2d547abf1 100644
--- a/app/views/posts/show.html.erb
+++ b/app/views/posts/show.html.erb
@@ -143,6 +143,7 @@
<% end %>
<% content_for(:html_header) do %>
+
diff --git a/config/danbooru_default_config.rb b/config/danbooru_default_config.rb
index e0f90198c..8dfbb8a5d 100644
--- a/config/danbooru_default_config.rb
+++ b/config/danbooru_default_config.rb
@@ -16,6 +16,10 @@ module Danbooru
end
end
+ def description
+ "Find good anime art fast"
+ end
+
# The hostname of the server.
def hostname
Socket.gethostname