# Source: http://stackoverflow.com/questions/19169849/how-to-get-markdown-processed-content-in-jekyll-tag-plugin module Jekyll module Tags class CalloutTag < Liquid::Block def initialize(tag_name, type, tokens) super @type = type if type == "danger" @type = "danger" elsif type == "warning" @type = "warning" elsif type == "info" @type = "info" end end def render(context) site = context.registers[:site] converter = site.getConverterImpl(::Jekyll::Converters::Markdown) output = converter.convert(super(context)) "