jekyll-seo-tag/lib/jekyll-seo-tag.rb

52 lines
1.0 KiB
Ruby
Raw Normal View History

2016-01-29 18:35:40 +00:00
require 'jekyll-seo-tag/filters'
2015-10-25 21:21:46 +00:00
module Jekyll
class SeoTag < Liquid::Tag
attr_accessor :context
2016-02-09 23:48:24 +00:00
MINIFY_REGEX = /(>\n|[%}]})\s+(<|{[{%])/
2015-10-25 21:21:46 +00:00
def render(context)
@context = context
2016-01-11 00:49:18 +00:00
output = template.render!(payload, info)
output
2015-10-25 21:21:46 +00:00
end
private
def payload
{
2016-02-20 22:34:02 +00:00
'seo_tag' => { 'version' => VERSION },
'page' => context.registers[:page],
'site' => context.registers[:site].site_payload['site']
2015-10-25 21:21:46 +00:00
}
end
def info
{
2016-02-09 23:48:24 +00:00
registers: context.registers,
filters: [Jekyll::Filters, JekyllSeoTag::Filters]
2015-10-25 21:21:46 +00:00
}
end
2016-01-11 00:49:18 +00:00
def template
@template ||= Liquid::Template.parse template_contents
end
2015-10-25 21:21:46 +00:00
def template_contents
2016-02-09 23:48:24 +00:00
@template_contents ||= begin
File.read(template_path).gsub(MINIFY_REGEX, '\1\2').chomp
end
2015-10-25 21:21:46 +00:00
end
def template_path
2016-02-09 23:48:24 +00:00
@template_path ||= begin
File.expand_path './template.html', File.dirname(__FILE__)
end
2015-10-25 21:21:46 +00:00
end
end
end
Liquid::Template.register_tag('seo', Jekyll::SeoTag)