Hi there,
my first Hugo site is coming along pretty nicely, but I seem to be quite confused about how to use ref / relref. This is part of what my content
folder looks like:
content
documentation
_index.md
AlgorithmDevelopers.md
AlgorithmDevelopers
AlgorithmDebugging.md
In the _index.md
file, I have the following link:
[algorithm developers]({{< ref "documentation/AlgorithmDevelopers.md" >}})
This, however, results in the following error message being thrown:
ERROR: 2017/02/23 00:06:20 template_funcs.go:1398: No page found with path or logical name "documentation/AlgorithmDevelopers.md".
As I understand the documentation, the argument to ref / relref can be a path to a markdown file relative to the content/
folder, which I believe is the case here. Am I missing something obvious?
I did think about whether markdown files combined with folders of the same name might be a problem. However, linking to a file that doesn’t have a sibling folder with the same base name gives me the same problem.