snippetbashTip
jekyll — A simple, blog-aware, static site generator. More information: <https://jekyllrb.com/docs/usage/>.
Viewed 0 times
simplecommandstaticawarecliblogsitejekyll
Problem
How to use the
jekyll command: A simple, blog-aware, static site generator. More information: <https://jekyllrb.com/docs/usage/>.Solution
jekyll — A simple, blog-aware, static site generator. More information: <https://jekyllrb.com/docs/usage/>.Generate a development server that will run at <http://localhost:4000/>:
jekyll serveEnable incremental regeneration:
jekyll serve --incrementalEnable verbose output:
jekyll serve --verboseGenerate the current directory into
./_site:jekyll buildClean the site (removes site output and
cache directory) without building:jekyll cleanCode Snippets
Generate a development server that will run at <http://localhost:4000/>
jekyll serveEnable incremental regeneration
jekyll serve --incrementalEnable verbose output
jekyll serve --verboseGenerate the current directory into `./_site`
jekyll buildClean the site (removes site output and `cache` directory) without building
jekyll cleanContext
tldr-pages: common/jekyll
Revisions (0)
No revisions yet.