- From: Jeff Harris <jharris@barbershopbass.com>
- Date: Sat, 24 Mar 2007 10:03:47 -0700
- To: html-tidy@w3.org
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'>-- Chapter Officers' Reports</option> </select> turns into <select name="'cid'"> <option value="'0'"> ---- </option> <option value="'2'"> BOD & Committees </option> <option value="'15'"> -- 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