1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 00:26:00 +02:00

hexo: add new page (#4214)

Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
This commit is contained in:
Flex Zhong 2020-07-28 22:31:30 +08:00 committed by GitHub
parent 37ec59449a
commit 1d463f27dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

28
pages/common/hexo.md Normal file
View file

@ -0,0 +1,28 @@
# hexo
> A fast, simple & powerful blog framework.
> More information: <https://hexo.io/>.
- Initialize a website:
`hexo init {{path/to/directory}}`
- Create a new article:
`hexo new {{layout}} {{title}}`
- Generate static files:
`hexo generate`
- Start a local server:
`hexo server`
- Deploy the website:
`hexo deploy`
- Clean the cache file (`db.json`) and generated files (`public/`):
`hexo clean`