mirror of
				https://github.com/Rockbox/rockbox.git
				synced 2025-10-26 23:36:37 -04:00 
			
		
		
		
	git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4108 a1c6a512-1295-4272-9138-f99709370657
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			479 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			479 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/perl
 | |
| 
 | |
| # this is really a faq2html and should only be used for this purpose
 | |
| 
 | |
| sub fixline {
 | |
|     # change blank lines to  
 | |
|     $_ =~ s/^\s*$/\ \n/g;
 | |
| 
 | |
|     $_ =~ s/\</</g;
 | |
|     $_ =~ s/\>/>/g;
 | |
| 
 | |
|     $_ =~ s/(http:\/\/([a-zA-Z0-9_.\#\/-\?\&]*)[^\) .\n])/\<a href=\"$1\"\>$1\<\/a\>/g;
 | |
| 
 | |
|     $_ =~ s/(\\|\/)$/$1 /g; # clobber backslash on end of line
 | |
| }
 | |
| 
 | |
| while(<STDIN>) {
 | |
|     fixline($_);
 | |
|     push @p, "$_";
 | |
| }
 | |
| 
 | |
| print "<pre>\n";
 | |
| print @p;
 | |
| print "</pre>\n";
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |