qulogic/talkatu

Created a composite widget named TalkatuEditor that contains a toolbar and view with everything hooked up for you
<b>bold</b> <u>under</u> <i>italic</i> <em>emphasis</em> <strike>strike</strike> <sup>sup</sup> <sub>sub</sub> .<sup>.</sup>.<sub>.</sub>.
<b>foo <i>bar <u>baz <strike>qux</strike></u></i></b>
<pre>
pre
formatted
text
!!
!
</pre>
<code>
tag = gtk_text_tag_new("sup");
g_object_set(
G_OBJECT(tag),
"rise", 5000,
NULL
);
gtk_text_tag_table_add(text_table, tag);
g_object_unref(G_OBJECT(tag));
</code>