tldr/pages/common/jekyll.md

25 lines
483 B
Markdown
Raw Normal View History

# jekyll
2017-10-26 17:43:18 +01:00
> A simple, blog-aware, static site generator.
> More information: <https://jekyllrb.com/docs/usage/>.
2017-10-26 17:43:18 +01:00
- Generate a development server that will run at http://localhost:4000/:
`jekyll serve`
- Enable incremental regeneration:
`jekyll serve --incremental`
- Enable verbose output:
`jekyll serve --verbose`
- Generate the current directory into `./_site`:
2017-10-26 17:43:18 +01:00
`jekyll build`
2021-01-10 19:38:26 +00:00
- Clean the site (removes site output and `cache` directory) without building:
`jekyll clean`