Defined in header file: hzDocument.h
Rules concerning opening and closing of tags Note that this enum, along with enum hzHtagtype, enum hzHtagclass 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 hzHtagrule
{
| HTRULE_NULL | No valid rule | ||
| HTRULE_PAIRED | HTML Tag must be closed with either the <... /> notation or with the anti-tag | ||
| HTRULE_SINGLE | HTML Tag is not closed as it is its own anti-tag | ||
| HTRULE_OPTION | HTML Tag closure is optional (anti-tag exists but is not required) |
} ;