Peter Stibrany
unread,Nov 22, 2010, 10:10:33 AM11/22/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tagsoup-friends
Hello,
I am having trouble with parsing HTML email replies. For example, this
is part of reply generated by Thunderbird (edited):
<html>
<body bgcolor="#ffffff" text="#000000">
On 18.11.2010 16:12, Peter Stibrany wrote:
<blockquote cite="..." type="cite">
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">
<title></title>
<table bgcolor="#ffffff" cellspacing="10" width="100%">
...
</table>
</blockquote>
</body>
</html>
Problem is that when tagsoup finds meta and title elements within
blockquote, terminates body element, and generates new head + body
elements:
<html>
<body bgcolor="#ffffff" text="#000000">
On 18.11.2010 16:12, Peter Stibrany wrote:
<blockquote cite="..." type="cite">
</blockquote>
</body>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">
<title></title>
</head>
<body>
<table bgcolor="#ffffff" cellspacing="10" width="100%">
...
Is it possible to disable this "body-splitting"? I would like to keep
single body element, I don't mind having meta+title within blockquote.
Thank you,
-Peter