module Liquid module Locomotive module Tags class InlineEditor < ::Liquid::Tag def render(context) if context.registers[:inline_editor] %{ } end end end ::Liquid::Template.register_tag('inline_editor', InlineEditor) end end end