12 print STDERR "Opening $fn\n";
13 my $fh = FileHandle->new($fn, 'r') || die $!;
18 my($junk, $nfn) = split;
19 $re .= process_refile($nfn);
22 # ignore comments starting at the begining of the line
24 # dispose of comments with their leading spaces
28 # double all \ (twice)
47 print STDERR "Opening $fn\n";
48 my $fh = FileHandle->new($fn, 'r') || die $!;
53 my($junk, $nfn) = split;
54 $re .= process_recfile($nfn);
57 # skip comment only and blank lines
70 s/\[\[([a-z0-9_]+)\]\]/process_refile($1)/ge;
71 s/\[\<([a-z0-9_]+)\>\]/process_recfile($1)/ge;