From 9e35d26188a0bb430778ab35d30ab5f7b0793038 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 7 Feb 2023 17:21:07 +0530 Subject: [PATCH] Disable OGP social cards as building them breaks --- docs/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 6a5feb999..da2c6c095 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,6 +65,10 @@ extensions = [ # URL for OpenGraph tags ogp_site_url = website_url() +# disabled because of: https://github.com/wpilibsuite/sphinxext-opengraph/issues/96 +ogp_social_cards = { + "enable": False +} # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']