MV_HTML4_COMPLIANT — output HTML4-compliant HTML code
Example: Enabling the MV_HTML4_COMPLIANT feature
Add the following to interchange.cfg:
Variable MV_HTML4_COMPLIANT 1
Currently, this variable only affects the "joiner" element when the links are created. & is used instead of plain & when this variable is set.
Interchange 5.9.0:
Source: lib/Vend/Config.pm
Line 3666 (context shows lines 3656-3670 in global_directive_postprocess():3664)
$C->{ExternalExport} = external_cat($C->{ExternalExport});
$Global::ExternalStructure->{Catalogs}{ $C->{CatalogName} }{external_config}
= $C->{ExternalExport};
Vend::Util::uneval_file($Global::ExternalStructure, $Global::ExternalFile);
chmod 0644, $Global::ExternalFile;
},
);
sub global_directive_postprocess {
if ($Global::UrlSepChar eq '&') {
if ($Global::Variable->{MV_HTML4_COMPLIANT}) {
$Global::UrlJoiner = '&';
$Global::UrlSplittor = qr/\&|\&/;
}
else {