A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content. This fork deals with the issue JSON-LD Alt Property Not Recognized.
Go to file
Ben Balter 3ba744cf43 Merge pull request #212 from jekyll/docs
Move docs to their own folder
2017-07-14 11:52:18 -07:00
docs move docs to their own folder 2017-05-25 09:50:01 -04:00
lib dont use unless and else, per rubocop 2017-05-25 09:35:03 -04:00
script move docs to their own folder 2017-05-25 09:50:01 -04:00
spec appease rubocop 2017-07-14 19:39:05 +02:00
.gitignore move docs to their own folder 2017-05-25 09:50:01 -04:00
.rspec add tests for drop 2017-04-06 22:34:11 -04:00
.rubocop.yml Disable Style/IndentHeredoc on specs 2017-03-31 23:55:49 +02:00
.travis.yml Correct spelling in .travis.yml 2016-08-16 17:29:00 +02:00
Gemfile appease rubocop 2017-07-14 19:39:05 +02:00
History.markdown Update history to reflect merge of #211 2017-05-25 09:38:56 -04:00
LICENSE.txt initial commit 2015-10-25 17:21:46 -04:00
README.md move docs to their own folder 2017-05-25 09:50:01 -04:00
jekyll-seo-tag.gemspec remove Rake dependency 2017-04-04 10:43:34 -04:00

README.md

Jekyll SEO Tag

A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content.

Gem Version Build Status

What it does

Jekyll SEO Tag adds the following meta tags to your site:

While you could theoretically add the necessary metadata tags yourself, Jekyll SEO Tag provides a battle-tested template of crowdsourced best-practices.

What it doesn't do

Jekyll SEO tag is designed to output machine-readable metadata for search engines and social networks to index and display. If you're looking for something to analyze your Jekyll site's structure and content (e.g., more traditional SEO optimization), take a look at The Jekyll SEO Gem.

Jekyll SEO tag isn't designed to accommodate every possible use case. It should work for most site out of the box and without a laundry list of configuration options that serve only to confuse most users.

Installation

  1. Add the following to your site's Gemfile:
gem 'jekyll-seo-tag'
  1. Add the following to your site's _config.yml:
gems:
  - jekyll-seo-tag
  1. Add the following right before </head> in your site's template(s):
{% seo %}

Documentation

See the documentation for more information.