Changeset 22917 for src

Show
Ignore:
Timestamp:
11/08/08 00:06:01 (2 months ago)
Author:
azawawi
Message:

[STD_syntax_highlight] added --snippet-html

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/perl6/ETOOMUCHTIME

    r22914 r22917  
    5454    my $myfile = $file; 
    5555    $myfile =~ s/^\.\.\/\.\.\/t\/spec/html/;    
    56     my ($simple_html,$full_html) = ("$myfile.simple.html", "$myfile.html"); 
     56    my ($simple_html,$snippet_html, $full_html) = ( 
     57        "$myfile.simple.html",  
     58        "$myfile.snippet.html", 
     59        "$myfile.html"); 
    5760    my ($html_filename,$html_path,$html_suffix) = fileparse($full_html); 
    5861    mkpath $html_path; 
     
    6467    -> $full_html 
    6568    -> $simple_html 
     69    -> $snippet_html 
    6670OUT 
    6771    my $t0 = new Benchmark; 
    6872    my $cmd = "./$HILITE --clean-html " . 
    6973            "--simple-html=$simple_html " . 
     74            "--snippet-html=$snippet_html " . 
    7075            "--full-html=$full_html $file"; 
    7176    my $log = `$cmd 2>&1`;