VuePress的reco主题

4/7/2023 博客框架

VuePress的reco主题

reco主题几乎继承VuePress默认主题的一切功能,,reco主题文档 (opens new window)vuepress文档 (opens new window)

# 一、文章标题属性介绍

---
// 文章标题,放弃通过一级目录定义标题的方式,改在 Front Matter 中定义
title: 烤鸭的做法
// 文章创建日期,格式 2019-08-08 或 2019-08-08 08:08:08
date: '2019-08-08 08:00:00'
// 是否开启侧边栏
sidebar: 'auto'
// 所属分类 可以支持多个
categories:
 - 烹饪
 - 爱好
// 标签 可以支持多个
tags:
 - 烤
 - 鸭子
// 文章加密密码,32位的 md5 加密密文
keys:
 - '32位的 md5 加密密文'
// 文章是否发布
publish: false
// 文章置顶
sticky

// 以下vuepress-plugin-auto-sidebar插件提供功能  将指定同目录下的文件名排在当前文件前
// 插件参考网址 https://shanyuhai123.github.io/vuepress-plugin-auto-sidebar/zh/features/markdown-file-config.html#autoprev-autonext
autoPrev: other-filename1
// 将指定同目录下的文件名排在当前文件后
autoNext: other-filename2
// 当你有文件不想显示在侧边栏时
autoIgnore: true
---
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31