diff options
Diffstat (limited to 'src/html.h')
-rw-r--r-- | src/html.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/html.h b/src/html.h index e447fd3d0..2e5ae8bcf 100644 --- a/src/html.h +++ b/src/html.h @@ -207,9 +207,20 @@ struct html_node { /* Forwarded declaration */ struct worker_task; +/* + * Add a single node to the tags tree + */ gboolean add_html_node (struct worker_task *task, memory_pool_t *pool, struct mime_text_part *part, gchar *tag_text, gsize tag_len, gsize remain, GNode **cur_level); + +/* + * Get tag structure by its name (binary search is used) + */ struct html_tag * get_tag_by_name (const gchar *name); + +/* + * Decode HTML entitles in text. Text is modified in place. + */ void decode_entitles (gchar *s, guint *len); #endif |