I maintain a documentation site, that has the following content:
content/
└── release-notes/
├── _index.md
├── stable-1.1.0.md
├── stable-1.2.0.md
└── stable-1.3.0.md
In 0.145.0, the content is rendered as:
release-notes/
├── index.html
├── stable-1.1.0/
│ └── index.html
├── stable-1.2.0/
│ └── index.html
└── stable-1.3.0/
└── index.html
In 0.146+, the content is rendered as:
release-notes/
├── index.html
└── stable-1
└── index.html
As you can see, the version in the file name is being treated as a file type.
Is this a bug? If not, what’s the cleanest way to fix my content to preserve the urls in 0.146+?