module Jekyll module Tags class ImageTag < Liquid::Tag def render(context) src = @markup.strip " " end end end end Liquid::Template.register_tag('image', Jekyll::Tags::ImageTag)