要创建新帖子,我的运行方式如下:
hugo new posts/post.md
然后按如下所示生成文件:
---
title: "Post"
date: 2019-10-27T15:57:27+09:00
draft: true
---
通常我使用tags
和categories
,所以最好默认添加它。
---
title: "Post"
date: 2019-10-27T15:57:27+09:00
draft: true
categories:
tags:
---
我在哪里以及如何配置hugo new
命令以完成此行为?
答案 0 :(得分:2)
您要编辑posts/*.md
文件的原型文件。有关此信息,请访问:
在#2 [*]中,它说:使用文本编辑器打开archetypes/default.md
,如下所示:
---
## Important: If this is a draft, next line should NOT begin with #
# draft: true
title: {{ replace .Name "-" " " | title }}
date: {{ now.Format "2006-01-02" }}
## below are user-defined parameters (lower case keys recommended)
subtitle:
tags:
- tag1
- tag2
---
您可以将各种事物(包括身体内容)放入原型中。
我希望这会有所帮助,
N(发布新手的堆栈溢出)
[*]我写了#2。我希望可以在此处自行链接。