mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
Document the invisible and name members of struct html_element
This commit is contained in:
parent
af1f475417
commit
3c44a88b39
@ -126,9 +126,18 @@ struct html_element {
|
|||||||
|
|
||||||
struct text_attrib attr;
|
struct text_attrib attr;
|
||||||
struct par_attrib parattr;
|
struct par_attrib parattr;
|
||||||
|
|
||||||
|
/* invisible is a flag using which element handlers can control
|
||||||
|
* processing in start_element. 0 indicates that start_element should
|
||||||
|
* process tags, 1 indicates that it should not, and 2 or greater
|
||||||
|
* indicates that it should process only script tags. */
|
||||||
int invisible;
|
int invisible;
|
||||||
|
|
||||||
|
/* The name of the element without NUL termination. name is a pointer
|
||||||
|
* into the actual document source. */
|
||||||
unsigned char *name;
|
unsigned char *name;
|
||||||
int namelen;
|
int namelen;
|
||||||
|
|
||||||
unsigned char *options;
|
unsigned char *options;
|
||||||
/* See document/html/parser/parse.c's element_info.linebreak
|
/* See document/html/parser/parse.c's element_info.linebreak
|
||||||
* description. */
|
* description. */
|
||||||
|
Loading…
Reference in New Issue
Block a user