in src/_plugins/code_sample.rb [51:69]
def render(context)
link = ""
if @src_url
link = "(<a href='#{$src_prefix + @src_url}'>see full source</a>)"
end
("\n\n<table sytle='border:0px'><thead>" +
"<tr><td><strong>Source code #{link}</strong>" +
"</td><td>" +
"</td><td><strong>Try it out...</strong></td></tr>" +
"</thead><tbody><tr>" +
"<td style='width:#{@percent}%;vertical-align:top;'>" + super.strip +
"</td><td style='width:100%;'>" +
"</td><td style='vertical-align:top;'>" +
"<iframe style='border:none;height:#{@height};width:#{@width};'" +
" src='#{$iframe_prefix + @iframe_url}'></iframe>" +
"</td></tr></tbody></table>\n\n")
end