Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
feat(plot_directive): add RST directory option#26099
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
0d9e6c1
fb04730
afe63c8
9c99e19
7a9bbad
ed04772
210149c
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -151,6 +151,25 @@ | ||
The plot_srcset option is incompatible with *singlehtml* builds, and an | ||
error will be raised. | ||
plot_rst_directory | ||
By default, the directory for RST files is automatically determined | ||
from the name of the Python file. This works fine with, e.g., the | ||
``sphinx.ext.autodoc`` extension. However, you may need to modify the | ||
path if RST files are generated in another directory. This is the | ||
case if you use the ``autodoc2`` extension. | ||
For it to work, you need to set the ``plot_rst_directory`` option | ||
in ``conf.py``: | ||
.. code:: python | ||
plot_rst_directory = "source/apidocs/<your_package>/" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Is there a way we can explain the folder situation here? Is this guaranteed to be always under the API docs source dir? I'm thinking of a potential mix between api and narrative docs and where the plots would live for this intermediate state. | ||
.. note:: | ||
This currently only supports one directory, and can cause potential | ||
problems if you have multiple packages documented with ``autodoc2``. | ||
Notes on how it works | ||
--------------------- | ||
@@ -307,6 +326,7 @@ | ||
app.add_config_value('plot_working_directory', None, True) | ||
app.add_config_value('plot_template', None, True) | ||
app.add_config_value('plot_srcset', [], True) | ||
app.add_config_value('plot_rst_directory', None, True) | ||
app.connect('doctree-read', mark_plot_labels) | ||
app.add_css_file('plot_directive.css') | ||
app.connect('build-finished', _copy_css_file) | ||
@@ -746,7 +766,11 @@ | ||
context_opt = None if not keep_context else options['context'] | ||
rst_file = document.attributes['source'] | ||
if not config.plot_rst_directory: | ||
rst_dir = os.path.dirname(rst_file) | ||
else: | ||
rst_dir = config.plot_rst_directory | ||
if len(arguments): | ||
if not config.plot_basedir: | ||
Uh oh!
There was an error while loading.Please reload this page.