config: Access OPT_MUST_SAVE in the real option, not alias.
[elinks/elinks-j605.git] / src / dom / sgml / html / html.h
blob78cc25dc246f2b32cfc139ec0f3e8cf060652a2c
2 #ifndef EL_DOM_SGML_HTML_HTML_H
3 #define EL_DOM_SGML_HTML_HTML_H
5 #include "dom/sgml/sgml.h"
7 extern struct sgml_info sgml_html_info;
9 #undef VERSION
10 #define HTML_(node, name, flags) SGML_NODE_INFO_TYPE(HTML, node, name)
11 #define HTM2_(node, name, str, flags) SGML_NODE_INFO_TYPE(HTML, node, name)
13 enum html_element_type {
14 HTML_ELEMENT_UNKNOWN,
16 #include "dom/sgml/html/element.inc"
18 HTML_ELEMENTS,
21 enum html_attribute_type {
22 HTML_ATTRIBUTE_UNKNOWN,
24 #include "dom/sgml/html/attribute.inc"
26 HTML_ATTRIBUTES,
29 #undef HTML_
30 #undef HTM2_
32 #endif