# File lib/jekyll/tags/highlight.rb, line 32
    def render_pygments(context, code)
      if context["content_type"] == "markdown"
        return "\n" + Albino.new(code, @lang).to_s(@options) + "\n"
      elsif context["content_type"] == "textile"
        return "<notextile>" + Albino.new(code, @lang).to_s(@options) + "</notextile>"
      else
        return Albino.new(code, @lang).to_s(@options)
      end
    end