From 260f6dbe97c37189271e6745b898bfa541c6254a Mon Sep 17 00:00:00 2001 From: aflorea-2k <83187686+aflorea-2k@users.noreply.github.com> Date: Tue, 3 Aug 2021 20:02:25 +0200 Subject: [PATCH] doc(wibox.widget.textbox.html): fixed pango links (#3401) Links to gnome's pango webpage (https://developer.gnome.org/pango/stable/PangoMarkupFormat.html) were broken. They now all point to docs.gtk.org . --- lib/wibox/widget/textbox.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/wibox/widget/textbox.lua b/lib/wibox/widget/textbox.lua index f5181087..26f6ea2f 100644 --- a/lib/wibox/widget/textbox.lua +++ b/lib/wibox/widget/textbox.lua @@ -148,7 +148,7 @@ function textbox:get_height_for_width_at_dpi(width, dpi) end --- Set the text of the textbox.(with --- [Pango markup](https://developer.gnome.org/pango/stable/pango-Markup.html)). +-- [Pango markup](https://docs.gtk.org/Pango/pango_markup.html)). -- -- @tparam string text The text to set. This can contain pango markup (e.g. -- `bold`). You can use `gears.string.escape` to escape @@ -178,7 +178,7 @@ function textbox:set_markup_silently(text) end --- Set the text of the textbox (with --- [Pango markup](https://developer.gnome.org/pango/stable/pango-Markup.html)). +-- [Pango markup](https://docs.gtk.org/Pango/pango_markup.html)). -- -- @property markup -- @tparam string text The text to set. This can contain pango markup (e.g.