no_default_reparse — do not reparse Interchange output by default
This pragma disables default reparse of Interchange output from container tags.
Reparsing can, of course, still be requested using the
Reparse setting
in individual ITL tag definition, or by providing the
universal reparse=1 attribute to any container tag.
Example: Enable no_default_reparse pragma page-wide
Put the following anywhere on your page:
[pragma no_default_reparse]
Interchange 5.7.0 (1/1 contexts shown):
Source: lib/Vend/Parse.pm (rev. 2.44 from Thu Dec 20 06:03:07 2007)
Line 702 (context shows lines 692-706 in start():594)
#::logDebug("using default $k = $v");
$attr->{$k} = $v;
}
}
$attr->{enable_html} = 1 if $Vend::Cfg->{Promiscuous};
$attr->{reparse} = 1
unless (
defined $NoReparse{$tag}
|| defined $attr->{reparse}
|| $::Pragma->{no_default_reparse}
);
my ($routine,@args);