Why are HTML character entities necessary? What good are they? I don't see the point.
|
Two main things.
|
|||||||
|
|
" Long answer: Since HTML uses ' |
|||||
|
|
They aren't, apart from |
|||
|
|
|
Character entities are used to represent character which are reserved to write HTML for.ex. <, >, /, & etc, if you want to represent these characters in your content you should use character entities, this will help the parser to distinguish between the content and markup |
|||
|
|
|
In SGML and XML they aren't just for characters. They are generic inclusion mechanism, and their use for special characters is just one of many cases.
This kind of entities is not useful for web sites, because they work only in XML mode, and you can't use external DTD file without enabling "validating" parsing mode in browser configuration. Entities can be expanded recursively. This allows use of XML for Denial of Serice attack called "Billion Laughs Attack". Firefox uses entities internally (in XUL and such) for internationalization and brand-independent messages (to make life easier for Flock and IceWeasel):
In HTML you just need All other entities are basically obsoleted by Unicode encodings and remain only as covenience (but a good text editor should have macros/snippets that can replace them). In XHTML all entities except the basic few are problematic, because won't work with stand-alone XML parsers (e.g. To parse all XHTML entities you need validating XML parser (option's usually called "resolve externals") which is slower and needs DTD Catalog set up. If you ignore or screw up your DTD Catalog, you'll be participating in DDoS of W3C servers. |
|||
|
|
|
You use entities to help the parser distinguish when a character should be represented as HTML, and what you really want to show the user, as HTML will reserve a special set of characters for itself. Typing this literally in HTML
will cause the "</sarcasm>" tag to disappear, e.g.
as HTML does not have a tag defined as such. In this case, using entities will allow the text to display properly. e.g.
gives
as desired. |
|||
|
|