You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
freshtomato-arm/release/src-rt-6.x.4708/router/samba3/docs-xml/scripts/neatquotes.pl

13 lines
240 B
Perl

#!/usr/bin/perl
my $inprog = 0;
while(<STDIN>) {
if(/<(programlisting|screen)>/) { $inprog = 1; }
if(/<\/(programlisting|screen)>/) { $inprog = 0; }
if(not /="(.*)"/ and not $inprog) {
s/"(.*?)"/<quote>\1<\/quote>/g;
}
print $_;
}