summaryrefslogtreecommitdiff
path: root/docs/website/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/website/conf.py')
-rw-r--r--docs/website/conf.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/website/conf.py b/docs/website/conf.py
index 98a51412..95c37c8e 100644
--- a/docs/website/conf.py
+++ b/docs/website/conf.py
@@ -11,7 +11,6 @@ html_theme = 'sphinx_rtd_theme'
html_show_copyright = False
project = "GObject Introspection"
html_title = project
-highlight_language = 'c'
html_theme_options = {
"display_version": False,
@@ -30,4 +29,8 @@ html_context = {
extlinks = {
'bzbug': ('https://bugzilla.gnome.org/show_bug.cgi?id=%s', 'bz#'),
'commit': ('https://gitlab.gnome.org/GNOME/gobject-introspection/commit/%s', ''),
+ 'issue': ('https://gitlab.gnome.org/GNOME/gobject-introspection/issues/%s', '#'),
+ 'mr': (
+ 'https://gitlab.gnome.org/GNOME/gobject-introspection/merge_requests/%s', '!'),
+ 'user': ('https://gitlab.gnome.org/%s', ''),
}