我克隆了一个Hugo项目,但是当我尝试编译它时,却出现如下错误:
function "i18n" not defined
此功能与多语言支持有关。我注意到here发生了类似的情况,因此我尝试遵循此修复程序,该修复程序指定为:
go get github.com/spf13/hugo
cd $GOPATH/src/github.com/spf13/hugo
git remote add abourget [email protected]:abourget/hugo
git checkout -b multilingual abourget/master
go install -v
但这是行不通的,因为该分支似乎不再存在,并且我找不到关于它的更多注释。有谁知道如何添加此功能?
最佳答案
多语言支持现已合并到Hugo master中,但尚未发布。希望在Hugo 0.17中出现的时间不会太长。
同时,您可以自己构建它,并阅读https://github.com/spf13/hugo/blob/master/docs/content/content/multilingual.md上的文档
关于git - 雨果-多种语言支持错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38210524/