Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/showlotus/showlotus.github.io
https://github.com/showlotus/showlotus.github.io
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/showlotus/showlotus.github.io
- Owner: showlotus
- Created: 2024-08-23T13:52:13.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-12-16T11:39:46.000Z (25 days ago)
- Last Synced: 2024-12-16T12:33:16.276Z (25 days ago)
- Language: HTML
- Homepage: https://showlotus.github.io/
- Size: 82.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hexo 指南
## 常用命令
### 新建文章
```shell
hexo new [类型] [文章名]
```### 本地浏览器预览
```shell
hexo server
# 简写 hexo s
```携带 `--draft` 参数,预览草稿状态下的文章
```shell
hexo s --draft
```### 发布草稿
原理:将文章从 `source/_drafts` 移动到 `source/_posts` 下
```shell
hexo p [文章名]
```## 插件
### 文章保存后,自动刷新页面
```shell
npm i hexo-browsersync -D
```### 插入数学表达式
[Hexo Filter MathJax](https://github.com/next-theme/hexo-filter-mathjax)