Skip to content

Project: Add deprecation and removal warning to Advanced Settings #10393

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

Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{% load i18n %}
<p class="empty">
{% blocktrans trimmed with config_file_link="https://docs.readthedocs.io/page/config-file/v2.html" %}
These settings can be configured using a
<a href="{{ config_file_link }}">configuration file</a>.
That's the recommended way to set up your project.
<strong>Settings listed here are ignored when using a configuration file.</strong
{% blocktrans trimmed with config_file_link="https://docs.readthedocs.io/page/config-file/v2.html" deprecation_link="https://blog.readthedocs.com/migrate-configuration-v2/" %}
Usage of the below settings is <strong>deprecated</strong> and support for these fields will be removed on <strong>September 25th, 2023</strong>.
<br><br>
For more information, see our blog post:
<a href="{{ deprecation_link }}" target="_blank">migrating your configuration to .readthedocs.yaml</a>
or refer to our documentation's <a href="{{ config_file_link }}" target="_blank">configuration file reference</a>.
{% endblocktrans %}
</p>