mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 09:53:25 +00:00

The urlmap file allows gi-docgen to generate links for namespaces that are also generated by gi-docgen. For example, with this commit, a reference to `GObject` will now be properly linked to the GObject documentation.
9 lines
375 B
JavaScript
9 lines
375 B
JavaScript
// A map between namespaces and base URLs for their online gi-docgen documentation
|
|
baseURLs = [
|
|
[ 'GLib', 'https://docs.gtk.org/glib/' ],
|
|
[ 'GObject', 'https://docs.gtk.org/gobject/' ],
|
|
[ 'Gdk', 'https://docs.gtk.org/gdk3/' ],
|
|
[ 'GdkPixbuf', 'https://docs.gtk.org/gdk-pixbuf/' ],
|
|
[ 'Gio', 'https://docs.gtk.org/gio/' ],
|
|
[ 'Gtk', 'https://docs.gtk.org/gtk3/' ],
|
|
]
|