From e22360db0322e5dab4c08db4592cfe3a8bd81d0b Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 22 Apr 2024 14:36:19 +0200 Subject: [PATCH] Documentation: Disable leftover version chooser --- docs/conf.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 6b17078..0838810 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,3 +5,10 @@ lexers["php"] = PhpLexer(startinline=True, linenos=1) lexers["php-annotations"] = PhpLexer(startinline=True, linenos=1) # primary_domain = "php" + +# Disable version chooser. +html_context.update({ + "display_version": False, + "current_version": None, + "versions": [], +})