comparison src/html.c @ 7014:67c4e9d39242

[gaim-migrate @ 7577] Here it is, the bulk of the new Jabber prpl. Left to do: - Implement registration - Implement password changing - Keep track of conversation threads (since I apparently have to) - Fix the bugs that always magically appear in code after I commit committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 29 Sep 2003 15:23:19 +0000
parents 7c14b35bc984
children 2343c3aa1dec
comparison
equal deleted inserted replaced
7013:859cafb6433f 7014:67c4e9d39242
466 ALLOW_TAG("h2"); 466 ALLOW_TAG("h2");
467 ALLOW_TAG("h3"); 467 ALLOW_TAG("h3");
468 ALLOW_TAG("h4"); 468 ALLOW_TAG("h4");
469 ALLOW_TAG("h5"); 469 ALLOW_TAG("h5");
470 ALLOW_TAG("h6"); 470 ALLOW_TAG("h6");
471 ALLOW_TAG("html"); 471 /* we only allow html to start the message */
472 if(c == html)
473 ALLOW_TAG("html");
472 ALLOW_TAG_ALT("i", "em"); 474 ALLOW_TAG_ALT("i", "em");
473 ALLOW_TAG_ALT("italic", "em"); 475 ALLOW_TAG_ALT("italic", "em");
474 ALLOW_TAG("li"); 476 ALLOW_TAG("li");
475 ALLOW_TAG("ol"); 477 ALLOW_TAG("ol");
476 ALLOW_TAG("p"); 478 ALLOW_TAG("p");