diff --git a/lib/template.html b/lib/template.html index e457312..4b87b8e 100644 --- a/lib/template.html +++ b/lib/template.html @@ -94,12 +94,12 @@ {% if seo_description %} - + {% endif %} {% if seo_url %} - + {% endif %} {% if seo_site_title %} diff --git a/spec/jekyll_seo_tag_spec.rb b/spec/jekyll_seo_tag_spec.rb index c17f5c9..4fa5a1d 100644 --- a/spec/jekyll_seo_tag_spec.rb +++ b/spec/jekyll_seo_tag_spec.rb @@ -55,7 +55,7 @@ describe Jekyll::SeoTag do it 'uses the page description' do expect(output).to match(%r{}) - expect(output).to match(%r{}) + expect(output).to match(%r{}) end end @@ -64,7 +64,7 @@ describe Jekyll::SeoTag do it 'uses the page excerpt when no page description exists' do expect(output).to match(%r{}) - expect(output).to match(%r{}) + expect(output).to match(%r{}) end end @@ -73,7 +73,7 @@ describe Jekyll::SeoTag do it 'uses the site description when no page description nor excerpt exist' do expect(output).to match(%r{}) - expect(output).to match(%r{}) + expect(output).to match(%r{}) end end @@ -83,7 +83,7 @@ describe Jekyll::SeoTag do it 'uses the site url to build the seo url' do expected = %r{} expect(output).to match(expected) - expected = %r{} + expected = %r{} expect(output).to match(expected) end @@ -94,7 +94,7 @@ describe Jekyll::SeoTag do expected = %r{} expect(output).to match(expected) - expected = %r{} + expected = %r{} expect(output).to match(expected) end end @@ -105,7 +105,7 @@ describe Jekyll::SeoTag do it 'uses baseurl to build the seo url' do expected = %r{} expect(output).to match(expected) - expected = %r{} + expected = %r{} expect(output).to match(expected) end end @@ -140,7 +140,7 @@ describe Jekyll::SeoTag do