Name

MV_HTML4_COMPLIANT — output HTML4-compliant HTML code

SYNOPSIS

{ 0 | 1 }

DESCRIPTION

This variable,if set, makes Interchange output HTML4-compliant HTML.

VARIABLE TYPE

Global variable

EXAMPLES

Example: Enabling the MV_HTML4_COMPLIANT feature

Add the following to interchange.cfg:

Variable MV_HTML4_COMPLIANT 1

NOTES

Currently, this variable only affects the "joiner" element when the links are created. & is used instead of plain & when this variable is set.

AVAILABILITY

MV_HTML4_COMPLIANT is available in Interchange versions:

4.8.0-5.7.0 (cvs-head)

SOURCE

Interchange 5.7.0:

Source: lib/Vend/Config.pm (rev. 2.239 from Sat Oct 11 00:01:22 2008)
Line 3662 (context shows lines 3652-3666 in parse_url_sep_char():3640)

    "%s character value '%s' longer than one character.",
    $var,
    $val,
  );
}
elsif($val !~ /[&;:]/) {
  config_warn("%s character value '%s' not a recommended value.", $var, $val);
}

if($val eq '&') {
  $Global::UrlJoiner = $Global::Variable->{MV_HTML4_COMPLIANT} ? '&' : '&';
  $Global::UrlSplittor = qr/\&/;
}
else {
  $Global::UrlJoiner = $val;

AUTHORS

Interchange Development Group

SEE ALSO

MV_DHTML_BROWSER(7ic), XHTML(7ic), UrlSepChar(7ic)

DocBook! Interchange!