摘要: hexo hugo vuepress 文档写法区别
区别
hexo写法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| --- title: 标题1 date: 2025-07-06 13:18:30
categories: - 父分类1 - 子分类1-1 tags: - 标签1 - 标签2
comments: false
updated: 2025-07-06 13:18:30 ---
|
hugo next 写法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| ---
title: "标题1" date: 2025-07-06 13:18:30
categories: - 父分类1 - 子分类1-1 tags: - 标签1 - 标签2
comment: enable: false
lastmod: 2025-07-06 13:18:30 ---
|
Vuepress2 hope 写法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| --- title: "标题1" date: 2025-07-06 13:18:30
category: - 分类1 - 分类2
tag: - 标签1 - 标签2
comment: false ---
|
总结
建议使用以下模版 兼容3个
1 2 3 4 5 6 7 8 9 10 11
| --- title: "标题1" date: 2025-07-06 13:18:30 # 分类 区分上下级 categories: - 父分类1 - 子分类1-1 tags: - 标签1 - 标签2 ---
|
扩展
Astro主题AstroWind写法
https://github.com/onwidget/astrowind
1 2 3 4 5 6 7
| --- title: Hexo多分类多标签图片路径写作教程 publishDate: 2025-05-30 11:19:04 category: Hexo tags: - Hexo ---
|
Astro主题fuwari写法
https://github.com/saicaca/fuwari
1 2 3 4 5 6
| --- title: Simple Guides for Fuwari published: 2024-04-01 tags: ["Fuwari", "Blogging", "Customization"] category: Guides ---
|