Set breaks option of gulp-marked to false so paragraph filling works
diff --git a/README.md b/README.md
index 00c104c..6d9c3ff 100644
--- a/README.md
+++ b/README.md
@@ -94,7 +94,8 @@
 
 1. Make your changes to `.md`, `.html`, and `.less` files
 2. Run `./node_modules/.bin/gulp`. This creates a `content` folder 
-3. Serve this folder using something like Python's [Simple HTTP Server](http://www.linuxjournal.com/content/tech-tip-really-simple-http-server-python).
+3. Serve this folder using something like Python's [Simple HTTP Server](http://www.linuxjournal.com/content/tech-tip-really-simple-http-server-python). If
+   you have Ruby installed you can simply run: `ruby -run -e httpd . -p 9090` and view the documents in your browser at localhost:9090.
 4. View the changes on the server you started in the previous step
 
 
diff --git a/gulpfile.js b/gulpfile.js
index ab9e2ac..253aff5 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -24,7 +24,7 @@
 gulp.task('md2html', function() {
   return gulp.src('./src/md/*.md')
     .pipe(marked({
-      breaks: true,
+      breaks: false,
       highlight: function (code, lang) {
         // Only highlight if language was specified and is not bash
         // (bash highlighting is pretty bad right now in highlightjs)
@@ -442,4 +442,4 @@
 gulp.task('watch', function() {
   gulp.watch('./src/less/*.less', ['less']);
   gulp.watch(['./src/pages/*.html', './src/partials/*.handlebars', './src/md/*.md'], ['html']);
-});
\ No newline at end of file
+});
diff --git a/src/md/docs.md b/src/md/docs.md
index a7f4a39..1c1c8d2 100644
--- a/src/md/docs.md
+++ b/src/md/docs.md
@@ -20,7 +20,7 @@
 for a new application, and finally, build and run the application -- all on a
 virtual machine running Linux with Apache Hadoop installed. 
 
-- <a href="http://docs.datatorrent.com/tutorials/topnwords/" rel="nofollow">Top N Words Application Tutorial</a>This document provides a detailed step-by-step description of how to build and run a
+- <a href="http://docs.datatorrent.com/tutorials/topnwords/" rel="nofollow">Top N Words Application Tutorial</a> This document provides a detailed step-by-step description of how to build and run a
 word counting application with Apache Apex starting with setting up your development environment,
 progressing to building, running and monitoring the application, visualizing the output and
 concluding with some advanced features such as assessing operator memory requirements,