'"' in attribute values translated to '""'

Hi Dave,

tidy has a nasty habit of exchanging '"' with '""'
in attribute values. I include an example showing this
problem.

Jacob

PS: Any chance you will start using gettext to make it
    easier to localize tidy?
------------------------------------------------------------
--  This file:

<html>
  <head>
    <title>
      Bug report
    </title>
    <link rel="Author" title="Jacob aka &quot;me&quot;.">
  <body>
    <p>
      Guess what happens.
</html>

------------------------------------------------------------
--  Translates to:

<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
  <head>
    <title>
      Bug report
    </title>
    <link rel="Author" title="Jacob aka &quot;"me&quot;".">
  <body>
    <p>
      Guess what happens.
</html>

------------------------------------------------------------

Received on Thursday, 15 April 1999 10:53:19 UTC