How to modify this script?

Thomas Rachel nutznetz-0c1b6768-bfa9-48d5-a470-7603bd3aa915 at spamschutz.glglgl.de
Tue Jan 8 09:22:19 EST 2013


Am 07.01.2013 18:56 schrieb Gertjan Klein:

> (Watch out for line wraps! I don't know how to stop Thunderbird from
> inserting them.)

Do "insert as quotation" (in German Thunderbird: "Als Zitat einfügen"), 
or Strg-Shift-O. Then it gets inserted with a ">" before and in blue.

Just remove the > and the space after it; the "non-breaking property" is 
kept.

Example:

     columns = line.split("\t");
     if len(columns) == 1:
         output += ('<td colspan=%s\>' % max_columns) + line + 
'</td\></tr\>\n'
         continue

without and

     columns = line.split("\t");
     if len(columns) == 1:
         output += ('<td colspan=%s\>' % max_columns) + line + 
'</td\></tr\>\n'
         continue

with this feature.

HTH,

Thomas



More information about the Python-list mailing list