From 0c7a26f68bb69d2bfbf330114b397e098a41979e Mon Sep 17 00:00:00 2001 From: Troy Swanson Date: Mon, 17 Feb 2014 22:39:07 -0600 Subject: [PATCH 1/2] Add clarification about output path of asset files --- site/docs/assets.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/site/docs/assets.md b/site/docs/assets.md index 5191dc15..83d20fe1 100644 --- a/site/docs/assets.md +++ b/site/docs/assets.md @@ -19,6 +19,11 @@ or `.coffee`) and start the file with two lines of triple dashes, like this: font-size: 1.2em {% endhighlight %} +Jekyll treats these files the same a regular page, in that the output file +will be placed in the same directory that it came from. For instance, if you +have a file named `/css/styles.scss`, Jekyll will process it and put it in +your site's destination folder under `/css/styles.css`. + ## Sass/SCSS Jekyll allows you to customize your Sass conversion in certain ways. From 95afec6977eb87dc727e4c982ba9d1e3b5829876 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Thu, 20 Feb 2014 09:32:35 -0600 Subject: [PATCH 2/2] Tweak wording about assets --- site/docs/assets.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/site/docs/assets.md b/site/docs/assets.md index 83d20fe1..bdfcfddc 100644 --- a/site/docs/assets.md +++ b/site/docs/assets.md @@ -21,8 +21,9 @@ or `.coffee`) and start the file with two lines of triple dashes, like this: Jekyll treats these files the same a regular page, in that the output file will be placed in the same directory that it came from. For instance, if you -have a file named `/css/styles.scss`, Jekyll will process it and put it in -your site's destination folder under `/css/styles.css`. +have a file named `/css/styles.scss` in your site's source folder, Jekyll +will process it and put it in your site's destination folder under +`/css/styles.css`. ## Sass/SCSS