Migrating to Jekyll Part 1
Posted on jekyll, rubyRecently, I read about a few Drupal blogs migrating over to Jekyll — acko.net and Development Seed. The concept seems nice as you will be writing the content in files instead of a database so I thought I would give it a try. With this, I am able to write blog posts using Vim. Also, on my current blog, I am using Markdown as my input filter for writing blog posts. Installation & Configuration Installing Jekyll was easy as I had only to follow these instructions. Did the following steps to install it: $ sudo apt-get install rubygems $ sudo gem install jekyll $ sudo apt-get install pytho...