1 2 3 4 5 6 7 8 9 10 11 12 13
|
// SPDX-FileCopyrightText: 2022 IƱigo Martinez <inigomartinez@gmail.com>
// SPDX-License-Identifier: GPL-2.0-or-later
// A map between namespaces and base URLs for their online documentation
baseURLs = [
[ 'Gdk', 'https://docs.gtk.org/gdk3/' ],
[ 'GdkPixbuf', 'https://docs.gtk.org/gdk-pixbuf/' ],
[ 'Gio', 'https://docs.gtk.org/gio/' ],
[ 'GLib', 'https://docs.gtk.org/glib/' ],
[ 'GObject', 'https://docs.gtk.org/gobject/' ],
[ 'Gtk', 'https://docs.gtk.org/gtk3/' ],
[ 'Libpeas', 'https://gitlab.gnome.org/GNOME/libpeas/' ],
]
|