| Name | Unit | Description |
|---|---|---|
| AttrNames | tidyobj | Names of standard HTML-4 attributes |
| BlockLevelTags | tidyobj | TidyTagID's that define "block level" tags. Generally, these are the tags that would cause a web browser to insert an implicit new line before and/or after the element. |
| ElementsWithOptionalEndTags | tidyobj | Elements that can optionally have a closing </tag> |
| ElementsWithoutEndTags | tidyobj | Elements that can never have a closing </tag> |
| TagNames | tidyobj | Names of standard HTML-4 elements |
| TAG_BUF_SIZE | tidyobj | Used by some of the routines to declare static buffers for parsing tag names and attribute names.
If you should ever need to modify the TagNames[] or AttrNames[] constants, be sure you don't add a string that is longer than TAG_BUF_SIZE-1 unless you increase the value of TAG_BUF_SIZE accordingly. I doubt that anyone will have a need for names longer than 255 chars, but just in case, you have been warned! |
| TIDY_NULL_FILE | tidyobj | Describes the system's "trash can" file, e.g. /dev/null on Linux, or 'NUL' on MS-Windows. |
| TypesWithoutEndTags | tidyobj | TidyNodeType's that can never have a closing </tag> |
|
|