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
The html_minify option uses a custom site_pages list to know what documents to minify, which is built as follows:
html_minify
site_pages
sphinx-material/sphinx_material/__init__.py
Lines 60 to 61 in 3c3d153
which doesn't work when using the dirhtml builder, for which the page URL is something like
dirhtml
os.path.join(app.outdir, pagename + "/index.html")
...I think. If it's as easy as checking the builder in an if statement, I might be able to put together a patch.
if
The text was updated successfully, but these errors were encountered:
A PR is welcome. Thanks.
Sorry, something went wrong.
No branches or pull requests
The
html_minify
option uses a customsite_pages
list to know what documents to minify, which is built as follows:sphinx-material/sphinx_material/__init__.py
Lines 60 to 61 in 3c3d153
which doesn't work when using the
dirhtml
builder, for which the page URL is something like...I think. If it's as easy as checking the builder in an
if
statement, I might be able to put together a patch.The text was updated successfully, but these errors were encountered: