Single quoted attributes pre-tidy

I'm passing the output of some CMS through tidy to make sure that it is
completely compliant. The package wraps most of the html tag attributes
in single quotes. When TIDY gets them, it wraps the single quotes inside
double quotes.

<select name='cid'>
<option value='0'>----</option>
<option value='2'> BOD & Committees</option>
<option value='15'>--&nbsp;Chapter Officers&#039; Reports</option>
</select>

turns into
       <select name="'cid'">
        <option value="'0'">
         ----
        </option>
        <option value="'2'">
         BOD &amp; Committees
        </option>
        <option value="'15'">
         --&nbsp;Chapter Officers' Reports
        </option>

Is there a configuration option that will fix/change the single quotes
into double quotes or should I look for some other quote conversion option?

-- 
Jeff Harris

Received on Sunday, 25 March 2007 13:36:45 UTC