Defined in header file: hzDocument.h
HTML Tag groupings by function Note that this enum, along with enum hzHtagtype, enum hzHtagrule and the hzHtagform class, are related matter, pertenant both to the generation of HTML in Dissemino and the parsing of any incoming HTML (web scraping)
Enum definition:
enum hzHtagclass
{
| HTCLASS_NUL | No valid class | ||
| HTCLASS_HDR | Page structure tags | ||
| HTCLASS_DAT | Data/layout tags | ||
| HTCLASS_LNK | Link tags | ||
| HTCLASS_INP | Input/form tags. Attrs only, no content | ||
| HTCLASS_INF | Information tags | ||
| HTCLASS_SYS | System tags (embed directives) | ||
| HTCLASS_TXT | Font control tags. Note these cannot have meaningful content in thier own right and are instead treated as part of the content of a parent tag that can. This also means that during data extraction from a HTML page, these tags are ignored. | ||
| HTCLASS_IMG | Image tags (no text content) | ||
| HTCLASS_3RD | Third party tag (no text content, ignored) |
} ;