diff --git a/lib/jekyll-seo-tag/drop.rb b/lib/jekyll-seo-tag/drop.rb index c8c3560..8d1b7bd 100644 --- a/lib/jekyll-seo-tag/drop.rb +++ b/lib/jekyll-seo-tag/drop.rb @@ -67,9 +67,9 @@ module Jekyll end def description - @description ||= format_string( - page["description"] || page["excerpt"] || site["description"] - ) + @description ||= begin + format_string(page["description"] || page["excerpt"]) || site_description + end end # Returns a nil or a hash representing the author