>documentation</a> may be useful to users.</p>
</summary>
+<directivesynopsis>
+<name>ProxyHTMLMeta</name>
+<description>Turns on or off extra pre-parsing of metadata in HTML
+<code><head></code> sections.</description>
+<syntax>ProxyHTMLMeta <var>On|Off</var></syntax>
+<contextlist><context>server config</context>
+<context>virtual host</context><context>directory</context>
+</contextlist>
+<compatibility>Version 2.4 and later; available as a third-party
+module for earlier 2.x versions.</compatibility>
+
+<usage>
+ <p>This turns on or off pre-parsing of metadata in HTML
+ <code><head></code> sections.</p>
+ <p>If not required, turning ProxyHTMLMeta Off will give a small
+ performance boost by skipping this parse step. However, it
+ is sometimes necessary for internationalisation to work correctly.</p>
+ <p>ProxyHTMLMeta has two effects. Firstly and most importantly
+ it enables detection of character encodings declared in the form</p>
+ <pre><meta http-equiv="Content-Type" content="text/html;charset=<var>foo</var>"></pre>
+ <p>or, in the case of an XHTML document, an XML declaration.
+ It is NOT required if the charset is declared in a real HTTP header
+ (which is always preferable) from the backend server, nor if the
+ document is <var>utf-8</var> (unicode) or a subset such as ASCII.
+ You may also be able to dispense with it where documents use a
+ default declared using <directive module="mod_xml2enc"
+ >xml2EncDefault</directive>, but that risks propagating an
+ incorrect declaration. A <directive>ProxyHTMLCharsetOut</directive>
+ can remove that risk, but is likely to be a bigger processing
+ overhead than enabling ProxyHTMLMeta.</p>
+ <p>The other effect of enabling ProxyHTMLMeta is to parse all
+ <code><meta http-equiv=...></code> declarations and convert
+ them to real HTTP headers, in keeping with the original purpose
+ of this form of the HTML <meta> element.</p>
+</usage>
+</directivesynopsis>
+
<directivesynopsis>
<name>ProxyHTMLEnable</name>
<description>Turns the proxy_html filter on or off.</description>