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
According to the documentation, setting the option use_directory_urls to false in the mkdocs.yml file should cause all links to pages within the documentation to point to their target files rather than the target directories (the default), but this configuration is having no effect in the html output.
The text was updated successfully, but these errors were encountered:
- The `use_directory_urls` option is now passed forward to the
SiteNavigation object in order to correctly generate links to the
target file when needed.
- The post-processing of the HTML generated by converting from Markdown
now takes the `use_directory_urls` option passed to the SiteNavigation
object into account when changing anchor targets.
- The dev server mode (mkdocs serve) still ignores the
`use_directory_urls` option in order to have user-friendly URLs.
- There is a new test case for post-processing converted Markdown when
`use_directory_urls` is `False`.
According to the documentation, setting the option
use_directory_urls
to false in themkdocs.yml
file should cause all links to pages within the documentation to point to their target files rather than the target directories (the default), but this configuration is having no effect in the html output.The text was updated successfully, but these errors were encountered: