diff --git a/docs/tutorial-views.markdown b/docs/tutorial-views.markdown
index 76df040e..9e519841 100644
--- a/docs/tutorial-views.markdown
+++ b/docs/tutorial-views.markdown
@@ -22,28 +22,26 @@ Views display Recline datasets in different ways. This page covers the interesti
Before writing any code with Recline, you need to do the following preparation steps on your page:
* [Download ReclineJS]({{page.root}}download.html) and relevant dependencies.
-* Include the relevant CSS in the head section of your document:
+* Include the relevant CSS in the head section of your document (for view-specific CSS files, see below):
{% highlight html %}
-
-{% endhighlight %}
+{% endhighlight %}
-* Include the relevant Javascript files somewhere on the page (preferably before body close tag):
+* Include the relevant Javascript files somewhere on the page (preferably before body close tag; for view-specific Javascript dependencies, see below):
{% highlight html %}
-
-
-
+
+
{% endhighlight %}
You're now ready to start working with Recline.
@@ -81,15 +79,19 @@ Although it's not demonstrated here, you can also use the simpler Grid view with
Let's create a data grid view to display the dataset we have just created. We're going to use the SlickGrid-based grid so we need the following CSS and JS dependencies in addition to those above:
{% highlight html %}
+
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+