If my default content language is english with config:
defaultContentLanguage = "en"
[languages.en]
weight = 0
languageName = "English"
contentDir = "content/en"
[languages.ja]
weight = 1
languageName = "日本語"
contentDir = "content/ja"
then the command:
hugo new ja/posts/post.md
will generate a new post in
content/en/ja/posts/post.md
and
hugo new content/ja/posts/post.md
will generate a new post in
content/en/posts/post.md
Expected output for me is in:
content/ja/posts/post.md
it would be nice if at least one of these two commands would give the result I am expecting.
(I am aware that if I specify the full path to the content it will give the expected output.)