+This function allows to set decorated static label text on platforms which
+support it (currently only GTK+ 2). For the other platforms, the markup is
+ignored.
+
+The supported tags are:
+
+\twocolwidtha{5cm}
+\begin{twocollist}\itemsep=0pt
+\twocolitem{<b>}{bold text}
+\twocolitem{<big>}{bigger text}
+\twocolitem{<i>}{italic text}
+\twocolitem{<s>}{strike-through text}
+\twocolitem{<sub>}{subscript text}
+\twocolitem{<sup>}{superscript text}
+\twocolitem{<small>}{smaller text}
+\twocolitem{<tt>}{monospaced text}
+\twocolitem{<u>}{underlined text}
+\twocolitem{<span>}{generic formatter tag; see \urlref{Pango Markup}{http://developer.gnome.org/doc/API/2.0/pango/PangoMarkupFormat.html} for more information.}
+\end{twocollist}
+
+Note that the string must be well-formed (e.g. all tags must be correctly closed)
+otherwise it can be not shown correctly or at all.
+
+Also note that you need to escape the following special characters:
+
+\twocolwidtha{5cm}
+\begin{twocollist}\itemsep=0pt
+\twocolitem{\textbf{Special character}}{\textbf{Escape as}}
+\twocolitem{\texttt{&}}{\texttt{&} or as \texttt{&&}}
+\twocolitem{\texttt{'}}{\texttt{'}}
+\twocolitem{\texttt{"}}{\texttt{"}}
+\twocolitem{\texttt{<}}{\texttt{<}}
+\twocolitem{\texttt{>}}{\texttt{>}}
+\end{twocollist}
+
+The non-escaped ampersand \texttt{&} characters are interpreted as
+mnemonics; see \helpref{wxControl::SetLabel}{wxcontrolsetlabel}.
+
+
+Example:
+
+%% TEX NOTE: in the following block we need to write the (ugly) &&amp;
+%% string in order to force Tex2rtf to show the && string
+\begin{verbatim}
+ // this will set the wxStaticText to show the "Hello world!" string
+ // with the "Hello" world in bold on platforms which support markup
+ pStaticText->SetLabelWithMarkup(wxT("<b>Hello</b> world!"));
+
+ // this will make wxStaticText show the string:
+ //
+ // Specials: & ' " < >"
+ //
+ // with "Specials" in smaller size font if markup is supported
+ pStaticText->SetLabelWithMarkup(
+ wxT("<small>Specials</small>: &amp; &apos; &quot;; &lt; &gt;"));
+\end{verbatim}
+