Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore mentions for spellcheck #123

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ django-modeltrans change log
- Add `JSONField` support (#119) refs: #118 by @jacobwegner
- Add `MODELTRANS_DEFAULT_LANGUAGE` setting (#117) by @jacobwegner
- Fix OperationalError under Django 5+ (#121) by @julianwachholz
- Test using postgres 14 for django master (#122)
- Test using PostgreSQL 14 for django master (#122)
- Drop Django 3.2 and 4.1 from the build matrix, add support for Django 5.0 and Django master, python 3.12 (#112, #105)
- Fix blank fields trying to insert NULL (#110) by @julianwachholz
- Fix translated form labels using current language (#108) by @julianwachholz
Expand Down
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Loading