我在多语言环境中使用Hugo(v0.58.1)。我的帖子存储在不同的文件夹中(例如content / en / ...,content / fr / ...)。
我想不通使用“ hugo new --kind post”命令按语言/文件夹创建.md文件的方法(例如,hugo new --kind post fr / 2019/09 / ...) ?
可能是-c,--contentDir字符串还是-d,--destination字符串标志?但是我不知道如何使用它们。
hugo new -k post -c /Users/ns/projects/hugo/tests/hugo-template/content/fr/post/2019/09/07/test.md
答案 0 :(得分:0)
您正在使用translation by content directory mode,因此需要传递-c
或--contentDir
参数:
hugo new -c content/fr post/2019/09/07/test.md
答案 1 :(得分:0)
您可以在config.toml中添加它以禁止显示“ en”
disableLanguages = ["en"]
然后重试
hugo new post/helloworld.md