We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Collections configuration in conf.py contents:
conf.py
collections = { "plugins": { "driver": "jinja", "source": "plugins.rst.jinja", "data": { "title": "Some title", "plugins": plugins, "projects": projects, }, "target": "plugins.rst", }, }
Output:
sphinx-build -b html doc build/html-doc Running Sphinx v3.0.4 loading translations [ru]... done Read in collections ... plugins: Initialised Clean collections ... Executing collections ... plugins: (JinjaDriver) Creating 1 file/s from Jinja template... Traceback (most recent call last): File ".../lib/python3.6/site-packages/sphinxcontrib/collections/drivers/jinja.py", line 122, in run with open(target, 'w') as target_file: IsADirectoryError: [Errno 21] Is a directory: '...doc/_collections/plugins.rst'
The issue is:
Collection
target
sphinx-collections/sphinxcontrib/collections/collections.py
Line 102 in 3c48b25
sphinx-collections/sphinxcontrib/collections/drivers/jinja.py
Line 122 in 3c48b25
The text was updated successfully, but these errors were encountered:
Hi, is this still an issue?
@vlotorev
Sorry, something went wrong.
No branches or pull requests
Collections configuration in
conf.py
contents:Output:
The issue is:
Collection
constructor creates new directory fortarget
:sphinx-collections/sphinxcontrib/collections/collections.py
Line 102 in 3c48b25
target
:sphinx-collections/sphinxcontrib/collections/drivers/jinja.py
Line 122 in 3c48b25
The text was updated successfully, but these errors were encountered: