Print out HTML contents into stream
- Parameters:
-
| stream | output stream such like stdout |
| mode | conversion mode |
| format | string format |
- Returns:
- true if successful, otherwise returns false
Mode 00 : Same as printf()
Mode 10 :Mode 0 + Convert
Mode 01 : Print HTML TAG using < and >
Mode 11 : Print HTML TAG + Convert
Mode 02 : Print HTML TAG + Auto Link
Mode 12 : Print HTML TAG + Auto Link + Convert
Mode 03 : Print HTML TAG + Auto Link(_top)
Mode 13 : Print HTML TAG + Auto Link(_top) + Convert
Mode 23 : Print HTML TAG + Auto Link(new window)
Mode 33 : Print HTML TAG + Auto Link(new window) + Convert
Mode 04 : Ignore HTML TAG
Mode 14 : Ignore HTML TAG + Convert
Mode 05 : Ignore HTML TAG + Auto Link
Mode 15 : Ignore HTML TAG + Auto Link + Convert
Mode 06 : Ignore HTML TAG + Auto Link(_top)
Mode 16 : Ignore HTML TAG + Auto Link(_top) + Convert
Mode 26 : Ignore HTML TAG + Auto Link(new window)
Mode 36 : Ignore HTML TAG + Auto Link(new window) + Convert
Convert : " " -> " "
" " -> " "
" " -> " "
"\n" -> "<br>\n"
"\r\n" -> "<br>\n"
Definition at line 82 of file qHtml.c.