hugolib: Avoid index.md in /index/index.html
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 27 Apr 2017 07:33:40 +0000 (09:33 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 27 Apr 2017 07:50:13 +0000 (09:50 +0200)
commitfea4fd86a324bf9679df23f8289887d91b42e919
treef0f939afeea5188359ab34e55c40e936a3ed3392
parent656f818867ab3e3dd9a9cc067e6da2e54bd6548b
hugolib: Avoid index.md in /index/index.html

Hugo 0.20 broke some sites that grouped their blog post and images together in subfolders.

This commit re-introduces that behaviour:

* If the file base name resolves to the same as the base name for the output type (i.e. "index" for HTML), the user probably meant it, so we treat that as an `uglyURL`, i.e. `my-blog-post-1.md`=> `/my-blog-post-1/index.html`
* The main use case for this is to group blog post and images together.
* Note that for the top level folder there will be a potential name conflict with a `section` `index.html` (if enabled)
* This issue will not be relevant for subfolders in sections
* Hugo will soon add support for nested sections, but we will have to find a way to separate them from the rest (`/content/_mysubsection` maybe).

Fixes #3396
hugolib/page_paths.go
hugolib/page_paths_test.go
hugolib/site_test.go