I\'m working on a Jekyll tag plugin for my Octopress site to help me make a \'note\' element. I just want to be able to highlight a piece of information on my blog as a sid
Use find_converter_instance to get the converter :
def render(context)
text = super
site = context.registers[:site]
converter = site.find_converter_instance(::Jekyll::Converters::Markdown)
_output += "#{converter.convert(_caption)}"