Lines Matching refs:tag

112   default: fprintf(stderr, "unknown tag");
141 * end_tag - shuts down the tag.
173 error("unrecognised tag");
178 * issue_tag - writes out an html tag with argument.
181 * space == 2 if tag should not have a space style
205 * issue_color_begin - writes out an html color tag.
226 * start_tag - starts a tag.
267 error("unrecognised tag");
293 * is_present - returns TRUE if tag is already present on the stack.
468 * do_color - initiates a new color tag.
473 shutdown(COLOR_TAG); // shutdown a previous color tag, if present
478 * done_color - shutdown an outstanding color tag, if it exists.
487 * shutdown - shuts down an html tag.
507 * pop tag
515 * push tag onto temp stack
557 * done_bold - shuts downs a bold tag.
566 * done_italic - shuts downs an italic tag.
575 * done_sup - shuts downs a sup tag.
584 * done_sub - shuts downs a sub tag.
593 * done_tt - shuts downs a tt tag.
602 * done_pre - shuts downs a pre tag.
611 * done_small - shuts downs a small tag.
620 * done_big - shuts downs a big tag.
643 * do_emittext - tells the class that text was written during the current tag.
709 * done_para - shuts down a paragraph tag.
722 * remove_indent - returns the indent associated with, tag.
723 * The indent associated with tag is set to NULL.
726 html_indent *html_text::remove_indent (HTML_TAG tag)
731 if (tag == p->type) {
743 * (effectively this trims off a leading `.sp' tag).
770 * do_break - issue a break tag.
784 * do_newline - issue a newline providing that we are inside a <pre> tag.
887 * remove_tag - removes a tag from the stack.
890 void html_text::remove_tag (HTML_TAG tag)
894 while ((p != 0) && (p->type != tag)) {
897 if ((p != 0) && (p->type == tag))
902 * remove_sub_sup - removes a sub or sup tag, should either exist
1006 * do_small - potentially inserts a <small> tag into the html stream.
1007 * However we check for a <big> tag, if present then we terminate it.
1008 * Otherwise a <small> tag is inserted.
1032 * do_sup - save a superscript tag on the stack of tags.
1041 * do_sub - save a subscript tag on the stack of tags.