1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-23 18:44:14 +02:00
tldr/pages/common/hexo.md
Managor fc3a8d07a1
*: use a more specific more info link, io domain (#17676)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
2025-08-16 10:32:10 +03:00

28 lines
427 B
Markdown

# hexo
> A fast, simple & powerful blog framework.
> More information: <https://hexo.io/docs/commands>.
- 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`