From c049e647524c9f24eeded5b9c63c6e0c9f7a4d14 Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Tue, 2 Jul 2024 11:09:11 +0200 Subject: [PATCH] Ignore mentions for spellcheck --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 29ee7c9..ac7093c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -67,5 +67,7 @@ # Boolean controlling whether suggestions for misspelled words are printed. # Defaults to False. spelling_show_suggestions = True + +spelling_filters = ["enchant.tokenize.MentionFilter"] html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] html_static_path = ["_static"]