This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
write_html_on(io, values)
public
Process the template using values,
writing the result to io.
# File lib/rdoc/template.rb, line 52
def write_html_on(io, values)
b = binding
template_include = ""
@templates.reverse_each do |template|
template_include = ERB.new(template).result b
end
io.write template_include
end