Changeset 13200 for trunk/cic-hcap


Ignore:
Timestamp:
2006-11-01T12:05:01+13:00 (17 years ago)
Author:
mdewsnip
Message:

Now converts \lquote RTF tags correctly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cic-hcap/perllib/plugins/CICPlug.pm

    r13161 r13200  
    10761076    }
    10771077    }
    1078     $rtf_string =~ s/\\ldblquote\s/"/g;
    1079     $rtf_string =~ s/\\ldblquote\b/"/g;
    1080     $rtf_string =~ s/\\rdblquote\s/"/g;
    1081     $rtf_string =~ s/\\rdblquote\b/"/g;
    1082     $rtf_string =~ s/\\rquote\s/'/g;  # ' # (for Emacs)
    1083     $rtf_string =~ s/\\rquote\b/'/g;  # ' # (for Emacs)
     1078    $rtf_string =~ s/\\ldblquote\s/\"/g;
     1079    $rtf_string =~ s/\\ldblquote\b/\"/g;
     1080    $rtf_string =~ s/\\rdblquote\s/\"/g;
     1081    $rtf_string =~ s/\\rdblquote\b/\"/g;
     1082    $rtf_string =~ s/\\lquote\s/\'/g;
     1083    $rtf_string =~ s/\\lquote\b/\'/g;
     1084    $rtf_string =~ s/\\rquote\s/\'/g;
     1085    $rtf_string =~ s/\\rquote\b/\'/g;
    10841086    $rtf_string =~ s/\\pard//g;
    10851087    $rtf_string =~ s/\\par/<br \/>/g;
Note: See TracChangeset for help on using the changeset viewer.