-
Notifications
You must be signed in to change notification settings - Fork 29
EditSite
Kenichi Ito edited this page Dec 12, 2015
·
15 revisions
-
jekyll と redcarpet をインストールします。
gem version >= 1.3.7
が必要です。$ gem install jekyll redcarpet
-
Pygments をインストールします。 (詳しくはこちらを参照)
$ pip install Pygments
または
$ easy_install Pygments
-
リポジトリをクローンします * vim-jp.github.com の push 権限が無い場合
- https://github.com/vim-jp/vim-jp.github.com.git を fork
-
$ git clone git@github.com:vim-jp.github.com.git
* vim-jp.github.com の push 権限がある場合 $ git clone git@github.com:vim-jp/vim-jp.github.com.git
-
jekyllをサーバモードで起動します。
$ jekyll serve --watch
Bundlerを使う場合は
$ bundle exec jekyll serve -w
環境によっては jekyll がパスに通ったところにインストールされません。
$ ln -s /usr/local/lib/ruby/gems/1.9.1/gems/jekyll-1.1.2/bin/jekyll /usr/local/bin/
のようにシンボリックリンクを張るか、フルパスで起動します。
-
ソースを修正します。もちろんVimですね?分かります。
-
ブラウザでhttp://localhost:4000/を開き確認します。
-
online HTML5 validatorを使って検証します。
-
リポジトリにpushし、更新権限の無い方はpull requestを送信します。