Method
ClutterTextset_markup
Declaration [src]
void
clutter_text_set_markup (
  ClutterText* self,
  const gchar* markup
)
Description [src]
Sets markup as the contents of a ClutterText.
This is a convenience function for setting a string containing Pango markup, and it is logically equivalent to:
  /* the order is important */
  clutter_text_set_text (CLUTTER_TEXT (actor), markup);
  clutter_text_set_use_markup (CLUTTER_TEXT (actor), TRUE);