Files
tldr/pages.zh/common/jekyll.md

24 lines
469 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# jekyll
> 一个简单的、支持博客的静态网站生成器。
> 更多信息:<https://jekyllrb.com/docs/usage/>.
- 生成一个将在 http://localhost:4000/ 运行的开发服务器:
`jekyll serve`
- 启用增量生成:
`jekyll serve --incremental`
- 启用详细输出:
`jekyll serve --verbose`
- 将当前目录生成到 `./_site`
`jekyll build`
- 清理网站(移除网站输出和 `cache` 目录)而不进行构建:
`jekyll clean`