Skip to content

Latest commit

 

History

History
84 lines (65 loc) · 1.59 KB

README_CN.md

File metadata and controls

84 lines (65 loc) · 1.59 KB

简介

  • Stella 是一个Gatsby的主题, 由jctaoo设计, 如果你是vuepress2.x的用户,现在也可以做在vuepress中使用这个主题啦
  • 英语 | 中文

概览

使用

安装

mkdir stella-demo

yarn init -y # or npm init -y

yarn add [email protected] 

yarn add vuepress-theme-stella

写博客

所有文章文件都应该在post目录下

创建一个关于页

新建一个about目录,然后新建一个README.md

分类

category

---
title: MD样式测试
category:
    - 技术
tag:
    - MarkDown
---

主题配置

interface ICommon {
  label: string;
  link: string;
}

type Ifooter = ICommon;
type Icons = ICommon;
type Icates = ICommon;

interface ThemeConfig extends VupressSiteConfig {
  shiki?: HighlighterOptions;
  footer?: string | Ifooter;
  cates?: Icates[];
  icons?: Icons[];
}

TODO

  • 支持配置外链
  • 支持跟随系统切换模式(深色/浅色)
  • Stella md 文件样式
  • 支持分类、tag过滤文章
  • 支持评论系统
  • 移动端适配
  • 默认页支持配置开关
  • 支持切换主题色
  • 支持分页
  • 支持文档、博客模式
  • 文章页配置banner图
  • 全文搜索
  • 友链
  • vue剪切板插件
  • 评论插件

License

License: MIT

LICENSE file