From a0f65888e3881b938048aac78394c92a1aa15d9b Mon Sep 17 00:00:00 2001 From: kyle Date: Wed, 25 Jan 2017 12:18:29 -0500 Subject: [PATCH] Remove Author tag. I guess it really isn't used anymore. --- lib/template.html | 4 ---- spec/jekyll_seo_tag_spec.rb | 8 -------- 2 files changed, 12 deletions(-) diff --git a/lib/template.html b/lib/template.html index e4baf2d..eddc637 100644 --- a/lib/template.html +++ b/lib/template.html @@ -104,10 +104,6 @@ {% endif %} -{% if seo_author %} - -{% endif %} - {% if seo_description %} diff --git a/spec/jekyll_seo_tag_spec.rb b/spec/jekyll_seo_tag_spec.rb index 232c788..6ffbf4f 100644 --- a/spec/jekyll_seo_tag_spec.rb +++ b/spec/jekyll_seo_tag_spec.rb @@ -70,14 +70,6 @@ describe Jekyll::SeoTag do end end - context "with page.author" do - let(:page) { make_page("author" => "Mr. Foo") } - - it "uses the page author" do - expect(output).to match(%r!!) - end - end - context "with page.excerpt" do let(:page) { make_page("excerpt" => "foo") }