0

我在 Windows 7 中安装了 jekyll,但它不起作用。我创建了一个名为 jekyllSite 的文件夹,并在该文件夹中包含了必要的文件,然后我打开命令提示符并cd在该文件夹中运行jekyll代码。它生成以下消息。我不明白出了什么问题?

←[1mNAME←[0m:

    jekyll

  ←[1mDESCRIPTION←[0m:

    Jekyll is a blog-aware, static site generator in Ruby

  ←[1mCOMMANDS←[0m:

    build                Build your site
    default
    docs                 Launch local server with docs for Jekyll v1.2.1

    doctor               Search site and print specific deprecation
warnings
    help                 Display global or [command] help documentation.

    import               Import your old blog to Jekyll
    new                  Creates a new Jekyll site scaffold in PATH

    serve                Serve your site locally

  ←[1mALIASES←[0m:

    hyde                 doctor
    server               serve

  ←[1mGLOBAL OPTIONS←[0m:

    -s, --source [DIR]
        Source directory (defaults to ./)

    -d, --destination [DIR]
        Destination directory (defaults to ./_site)

    --safe
        Safe mode (defaults to false)

    -p, --plugins PLUGINS_DIR1[,PLUGINS_DIR2[,...]]
        Plugins directory (defaults to ./_plugins)

    --layouts DIR
        Layouts directory (defaults to ./_layouts)

    -h, --help
        Display help documentation

    -v, --version
        Display version information

    -t, --trace
        Display backtrace when an error occurs
4

1 回答 1

0

您提供的输出只是对 jekyll 可执行文件可以执行的操作的描述。要获得任何结果,您应该使用 jekyll 命令来构建站点(立即准备静态文件)或托管站点。

因此,在这些情况下,您只需使用:

jekyll build

或者

jekyll serve

分别。

于 2013-11-03T14:29:38.423 回答