From fb1768f39e10544bb244c268a54d1fdc7ae59a39 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sat, 28 Feb 2015 09:15:38 -0500 Subject: [PATCH] Added comments on the jekyll build and serve commands. Added Jekyll to list of IPython Notebooks. --- README.md | 1 + commands/jekyll.ipynb | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 83d2fd8..642eb36 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ IPython Notebooks demonstrating pandas functionality. IPython Notebooks demonstrating various command lines for AWS, Unix, etc. * [aws commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/aws.ipynb) +* [jekyll commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/jekyll.ipynb) ## References diff --git a/commands/jekyll.ipynb b/commands/jekyll.ipynb index c688897..6b45620 100644 --- a/commands/jekyll.ipynb +++ b/commands/jekyll.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:435af6ed0f45ee8e7981d6153b8257fea87f3b76370a481bc1ae324c7e28815d" + "signature": "sha256:7c84e32a632b567f8244ff002bd56149062ba3002870c07b0399e389f30ca2f9" }, "nbformat": 3, "nbformat_minor": 0, @@ -52,7 +52,11 @@ "cell_type": "code", "collapsed": false, "input": [ + "# => The current folder will be generated into ./_site\n", "bundle exec jekyll build\n", + "\n", + "# => A development server will run at http://localhost:4000/\n", + "# Auto-regeneration: enabled. Use `--no-watch` to disable.\n", "bundle exec jekyll serve" ], "language": "python",