class=" xxx "

Post here if your topic is about CSS HTML Validator but doesn't fit in another forum.
Post Reply
User avatar
roedygr
Rank V - Professional
Posts: 367
Joined: Fri Feb 17, 2006 5:22 am
Location: Victoria BC Canada
Contact:

class=" xxx "

Post by roedygr »

I discovered "errors" in my markup of the form class=" xxx ". lead/and/or/trailing spaces on class parms.

There were screwing up my global search/replaces.

Are these kosher? HTML Validator does not complain or warn about them.

IIRC I can configure whether I like spaces around the =.
User avatar
Albert Wiersch
Site Admin
Posts: 3785
Joined: Sat Dec 11, 2004 9:23 am
Location: Near Dallas, TX
Contact:

Re: class=" xxx "

Post by Albert Wiersch »

Hello Roedy,

Here is more information on the "class" attribute:
http://www.w3.org/html/wg/drafts/html/m ... ml#classes

And the parsing information:
http://www.w3.org/html/wg/drafts/html/m ... -on-spaces

So it should not be a problem. Preceding and trailing spaces should be kosher.

However, it should be possible to write a small "user function" to generate a message if there are leading or trailing white-space characters. I've done this below.

Code: Select all

function onAttributeID_124() { // "_124" because 124 is the ID of the "class" attribute 
 if checkString(3,CurrentAttValue) {
  Message(1,MSG_WARNING,'The value for "'+CurrentAttName+'" has has leading and/or trailing white-space characters.',getAttValueLocation(CurrentAttIndex));
 }
}
Just put all your user functions in a *.cfg text file and specify that filename in the Validator Engine Options, Validator Engine->Config File page. You'll need to reload the configuration for any changes in the file to take effect.
Albert Wiersch, CSS HTML Validator Developer • Download CSS HTML Validator FREE Trial
Post Reply