The R Project SVN R

Rev

Rev 34091 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34091 Rev 36447
Line 612... Line 612...
612
    # not clear what to do with <sf>
612
    # not clear what to do with <sf>
613
    $text =~ s+<sf>(.*?)</sf>+\\bold{$1}+go;
613
    $text =~ s+<sf>(.*?)</sf>+\\bold{$1}+go;
614
    $text =~ s+<bf>(.*?)</bf>+\\bold{$1}+go;
614
    $text =~ s+<bf>(.*?)</bf>+\\bold{$1}+go;
615
    $text =~ s+<tt>(.*?)</tt>+\\code{$1}+go;
615
    $text =~ s+<tt>(.*?)</tt>+\\code{$1}+go;
616
    $text =~ s+<url>(.*?)</url>+\\url{$1}+go;
616
    $text =~ s+<url>(.*?)</url>+\\url{$1}+go;
-
 
617
    $text =~ s+<code>(.*?)</code>+\\code{$1}+go;
617
    $text =~ s/\n*<p>\n*/\n\n/go;
618
    $text =~ s/\n*<p>\n*/\n\n/go;
618
    $text =~ s/(<br>\n*)+/\n/go;
619
    $text =~ s/(<br>\n*)+/\n/go;
619
    $text =~ s/\$/\\\$/go;
620
    $text =~ s/\$/\\\$/go;
620
    $text =~ s/@/\\@/go;
621
    $text =~ s/@/\\@/go;
621
 
622