|
From: Christophe Prud'h. <pru...@MI...> - 2000-07-21 14:09:07
|
Hans> The example in corelinux.perl is not sufficient for correcting the above problem. I need
Hans> make rcs.perl read the "parameter" of the \RCS commands found in the .tex documents.
the documentation is so poor for latex2html
when it comes to write a style file :(
Hans> Do you have some idea on how to do this?
yes :)
sub do_cmd_param {
local($_) = @_;
local($param1);
local($param2);
# parse the arguments
s/$next_pair_pr_rx//o;
$param1=&translate_commands($2);
s/$next_pair_pr_rx//o;
$param2=&translate_commands($2);
$index = $index + 1;
join('',"RCS: param1= $param1 param2: $param2", $_ );
#TODO: to handle several forms in the same HTML doc, the input name has top be unique
# e.g.: "elasticity_param_$index"
};
BTW I corrected the bug in copyright for HTML !!!!
update you corelinux.perl
|