Displaying 1 result from an estimated 1 matches for "replace_command_all".
1997 Sep 01
1
R-alpha: old Rdoc 2 new Rdoc
...;
replace_command("VALUES", "value");
replace_command("REFERENCES", "references");
replace_command("SEEALSO", "seealso");
replace_command("EXAMPLES", "examples");
replace_command("NOTES", "notes");
replace_command_all("ALIAS", "alias");
replace_command_all("KEYWORD", "keyword");
while($text =~ /SECTION($ID)/){
$id = $1;
@args = get_two_args($id);
if($args[0] =~ /author/i){
$text =~ s/SECTION$id(.*)$id/\\author\{$args[1]\}/s;
}
else {
$text =~ s/SECTI...