There's no documentation for this item.
Source Code
# File webrick_server.rb, line 152 def set_charset(header) ct = header["content-type"] if ct.any? { |x| x =~ /^text\// } && ! ct.any? { |x| x =~ /charset=/ } ch = @server_options[:charset] || "UTF-8" ct.find { |x| x =~ /^text\// } << ("; charset=" + ch) end end
<code/>and<pre/>for code samples.