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
feat(urls): add opt-in slugify for content page URLs
Content files previously mapped to URLs mirroring their filenames verbatim,
so names with spaces produced percent-encoded paths (e.g.
`Openshift Registry Setup/` -> `Openshift%20Registry%20Setup/`). Some static
hosts (notably S3 + CloudFront) fail to resolve those `%20` paths and 404.
Add a `slugify.urls` toggle (default off, mkdocs-compatible) that slugifies
each content URL path segment using the existing `case`/`separator`/`ascii`
settings. Internal `.md` links are rewritten to the slugified targets
automatically via the existing link map (keyed on real paths, valued on URLs).
Move the `Slug` helper from Netdocs.Plugins to Netdocs.Abstractions so the
core content discovery can reuse it.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments