vote up 0 vote down star

What is the character entity for the equal character in HTML? I have been looking and I cannot find the character entity reference for that one character.

EDIT:

I am building a JSLint style validator for HTML. I am not happy with current validators as they only validate syntax requirements and not best practice considerations. I am requiring that the equal character in attribute values be escaped to prevent confusion between a legal value that contains and equal character and two illegal attributes that are not separated by a space.

flag

'A validator for HTML including best practice considerations.' Cool. Recent discussions relating to validator.nu doing this raised some dispute over what best practice was. Will the rules set for best practice be user configurable? – Alohci Sep 21 at 9:03
The tool is being written in JavaScript and is highly configurable internally, so yes, but the official tool will use definitions I dictate. If people are actually interested in using the completely tool I will be open to well argued changes. It will be strict by default placing definitions upon which child elements are allowed to which elements and what attributes are allowed and even what type of data an attribute value may be. I have already written all those definitions and the error reporting engine. I am currently working out bugs and writing unique rules for certain elements. – austin cheney Sep 21 at 11:34

6 Answers

vote up 5 vote down check

I use asciitable.com. = has ASCII value 61, so the HTML entity is =.

link|flag
vote up 2 vote down

You can use =, but it's not really necessary to escape = in HTML.

link|flag
vote up 1 vote down

=

But—why?

link|flag
vote up 0 vote down

=

Go here my friend

http://www.natural-innovations.com/wa/doc-charset.html

link|flag
vote up 1 vote down
=

If http://www.december.com/html/spec/codes.html is to believed, that is.

link|flag
vote up 0 vote down

"I am building a JSLint style validator for HTML."

Very interesting. I'm working on http://vldtr.com I'd love to hear from you as soon as something is finished.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.