我正在使用草稿功能。在我认为草稿写得足够好之后,我尝试通过hexo publish
将其转换为帖子。
但是,此命令似乎丢弃了tags
和category
信息并使用了支架信息。
我创建了一个草稿,例如:
---
title: My awesome post on hexo
category:
- hexo
tags:
- hexo
---
The content of this post
我的scaffolds/post.md
如下:
---
title: {{ title }}
date: {{ date }}
category:
- misc
tags:
- untagged
---
在hexo publish
之后,创建的帖子将是:
---
title: My awesome post on hexo
category:
- misc
tags:
- untagged
---
The content of this post
tags
和category
的脚手架停止十六进制并在hexo publish
插入时使用草稿的十六进制?