in jekyll/plugins/markdown_converter.rb [161:178]
def convert_blockquote(el, indent)
if el.children[0].type == :p and el.children[0].children[0].type == :strong
p = el.children[0]
type = inner_text(p.children[0], []).downcase.gsub(/\s+/, '')
p.children.slice!(0)
type = type + ' ' + el.attr['class'] unless el.attr['class'].nil?
el.attr['class'] = type
return format_seealso(el, indent) if type == 'seealso'
end
format_as_indented_block_html('aside', el.attr, inner(el, indent), indent)
end