# coding: utf-8 module Jekyll class EchoTag < Liquid::Tag def initialize(tag_name, markup, tokens) super @arg = markup end def render(context) @arg end end end Liquid::Template.register_tag("echo", Jekyll::EchoTag) これを _plugins/echotag.rb に配置して,ページの中で {% echo hello %} と書くと hello が出力されます. EchoTag#initialize の第二引数にタグの引数が渡されます.それを EchoTag#render メソッドで返すようにすれば echo タグを実装できます. Case Study 2: RSS Feed ここ