, then the "x" tag follows the line breaks inserted * by the
tag). */ struct tag *last_tag_for_newline; struct link_state_info link_state_info; struct conv_table *convert_table; /* Used for setting cache info from HTTP-EQUIV meta tags. */ struct cache_entry *cached; int g_ctrl_num; int subscript; /* Count stacked subscripts */ int supscript; /* Count stacked supscripts */ unsigned int empty_format:1; unsigned int nobreak:1; unsigned int nosearchable:1; unsigned int nowrap:1; /* Activated/deactivated by SP_NOWRAP. */ }; extern struct renderer_context renderer_context; void expand_lines(struct html_context *html_context, struct part *part, int x, int y, int lines, color_T bgcolor); void check_html_form_hierarchy(struct part *part); void draw_blockquote_chars(struct part *part, int y, struct html_context *html_context); void draw_frame_hchars(struct part *, int, int, int, unsigned char data, color_T bgcolor, color_T fgcolor, struct html_context *html_context); void draw_frame_vchars(struct part *, int, int, int, unsigned char data, color_T bgcolor, color_T fgcolor, struct html_context *html_context); void free_table_cache(void); struct part *format_html_part(struct html_context *html_context, char *, char *, int, int, int, struct document *, int, int, char *, int); int dec2qwerty(int num, char *link_sym, const char *key, int base); int qwerty2dec(const char *link_sym, const char *key, int base); void put_chars_conv(struct html_context *html_context, const char *chars, int charslen); void line_break(struct html_context *html_context); void *html_special(struct html_context *html_context, html_special_type_T c, ...); #ifdef CONFIG_COMBINE /** Discard any combining characters that have not yet been combined * with to the previous base character. */ void discard_comb_x_y(struct document *document); #else # define discard_comb_x_y(document) ((void) 0) #endif #ifdef __cplusplus } #endif #endif