From 7f826711d9b9210750b63baa434862896e6768fb Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Sun, 7 Jul 2024 13:54:24 -0500 Subject: [PATCH] Re-enable tag badges in our own docs --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index e04d61f..79a769c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,6 +12,7 @@ # import os import sys + from sphinx_tags import __version__ sys.path.insert(0, os.path.abspath("../src")) @@ -35,7 +36,7 @@ extensions = ["sphinx_design", "sphinx_tags", "nbsphinx", "myst_parser"] tags_create_tags = True -tags_create_badges = False +tags_create_badges = True # tags_output_dir = "_tags" # default tags_overview_title = "All tags" # default: "Tags overview" tags_extension = ["rst", "md", "ipynb"] # default: ["rst"]