From 1b91e6d89a1782b0db8021ff3e204715079f3030 Mon Sep 17 00:00:00 2001 From: Lewis Cowles Date: Sun, 15 Nov 2015 11:01:32 +0000 Subject: [PATCH] updated to reflect further feedback on #4129 @perlun had some more ideas for how this should read... --- site/_docs/assets.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/site/_docs/assets.md b/site/_docs/assets.md index 1d8d836a..202ade0e 100644 --- a/site/_docs/assets.md +++ b/site/_docs/assets.md @@ -5,9 +5,9 @@ permalink: /docs/assets/ --- Jekyll provides built-in support for Sass and can work with CoffeeScript via -ruby gems. In order to use them, create a file with the proper extension name -(one of `.sass`, `.scss`, or `.coffee`) and start the file with two lines of -triple dashes, like this: +a Ruby gem. In order to use them, you must first create a file with the +proper extension name (one of `.sass`, `.scss`, or `.coffee`) and start the +file with two lines of triple dashes, like this: {% highlight sass %} --- @@ -88,5 +88,6 @@ To enable Coffeescript in Jekyll 3.0 and up you must * Ensure that your `_config.yml` is up-to-date and includes the following {% highlight yaml %} -gems:[jekyll-coffeescript] +gems: + - jekyll-coffeescript {% endhighlight %}