brew install hugo
hugo new site quickstart
git init
git submodule add https://github.com/frjo/hugo-theme-zen.git themes/zen
echo 'theme = "zen"' \>\> config.toml
---
title: hello world
---
这是我的第一篇博客
![example](/test.jpg)
务必注意,此处绝对不能用普通的 markdown 写法,也就是
# hello world
这是我的第一篇博客
![example](/test.jpg)
上面这种写法,根本就无法识别是一篇 blog,后面不仅格式错误,图也出不来。别问我是怎么知道的
这里引用到了一个 test.jpg ,它是啥呢?这是一张本地图片,你可以自己随便放一张,到 static 目录下面。然后把该文件的名字替换掉我这里的 test.jpg
hugo server
{{<youtube id="8chV8ad4EvU"\>}}
hugo
test.jpg
是出现在当前目录下的。这样证明图像文件都包含在了最终发布的目录。https://github.com/wshuyi/hugo-quickstart-test.git
git remote add origin https://github.com/wshuyi/hugo-quickstart-test.git
git add .
git commit -m "init"
git push --set-upstream origin main
hugo --gc; git add .; git commit -m "update"; git push
HUGO_VERSION
,对应取值根据你实际的 hugo 版本来填写。例如写作本文时,用的是 0.80.0config.toml
baseURL = "https://shuyi-quickstart.netlify.app/"
hugo --gc; git add .; git commit -m "update"; git push
``` [*](((CxBmKJpOx)))