diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-04 17:38:09 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-04 17:38:09 -0500 |
commit | 6ba5e6bb1acd161f0b81ae27e60afb37afc747a8 (patch) | |
tree | 7ec5ece16d139e8bf428d7fa043059fceb652b62 /gtk/gtklabel.c | |
parent | ff8864cbf3ac43c1c346e9633cfa1f106b94dfe2 (diff) | |
download | gtk+-6ba5e6bb1acd161f0b81ae27e60afb37afc747a8.tar.gz |
docs: don't use <tag> docbook elements
Diffstat (limited to 'gtk/gtklabel.c')
-rw-r--r-- | gtk/gtklabel.c | 3 |
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 + * `<a>` 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="<i>Our</i> website">GTK+ website</a> for more..."); * ]| |