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
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to