Removes NOOP linkable_title plugin (#10282)

This commit is contained in:
Franck Nijhof 2019-09-03 16:09:42 +02:00 committed by GitHub
parent 8dc4c70967
commit 862abdaebe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +0,0 @@
module Jekyll
class LinkableTitleTag < Liquid::Tag
def initialize(tag_name, text, token)
super
@title = text
end
def render(context)
title = Liquid::Template.parse(@title).render context
"#{title}"
end
end
end
Liquid::Template.register_tag('linkable_title', Jekyll::LinkableTitleTag)