You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I investigated and tested this with my project, I found identical behavior with this href generation regardless of whether offline was enabled.
Seems like this is the same issue reported in #44. However use_directory_urls doesn't change this behavior for me either.
As identified in the conversation for issue #59,
formats.pdf.buttons.download.href
results in one too many parent directory references.mkdocs-exporter/mkdocs_exporter/formats/pdf/buttons/download.py
Line 15 in 0d4eae0
os.path.relpath
assumes the source argument is a directory, so when it receives a file path the file's name is also treated like a directory.This would be resolved with the following:
The text was updated successfully, but these errors were encountered: