summaryrefslogtreecommitdiff
path: root/gtk/gtklabel.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 17:38:09 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-04 17:38:09 -0500
commit6ba5e6bb1acd161f0b81ae27e60afb37afc747a8 (patch)
tree7ec5ece16d139e8bf428d7fa043059fceb652b62 /gtk/gtklabel.c
parentff8864cbf3ac43c1c346e9633cfa1f106b94dfe2 (diff)
downloadgtk+-6ba5e6bb1acd161f0b81ae27e60afb37afc747a8.tar.gz
docs: don't use <tag> docbook elements
Diffstat (limited to 'gtk/gtklabel.c')
-rw-r--r--gtk/gtklabel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c
index ab769f1aae..6ca271c5e2 100644
--- a/gtk/gtklabel.c
+++ b/gtk/gtklabel.c
@@ -200,11 +200,12 @@
*
* Since 2.18, GTK+ supports markup for clickable hyperlinks in addition
* to regular Pango markup. The markup for links is borrowed from HTML, using the
- * <tag>a</tag> with href and title attributes. GTK+ renders links similar to the
+ * `&lt;a&gt;` with href and title attributes. GTK+ renders links similar to the
* way they appear in web browsers, with colored, underlined text. The title
* attribute is displayed as a tooltip on the link.
*
* An example looks like this:
+ *
* |[<!-- language="C" -->
* gtk_label_set_markup (label, "Go to the <a href="http://www.gtk.org" title="&lt;i&gt;Our&lt;/i&gt; website">GTK+ website</a> for more...");
* ]|