From 80de84361b8ced61c32579fc5311b0afecff31c0 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Thu, 8 Sep 2016 01:44:28 +0100 Subject: [PATCH] sass: various tweaks lowercase heading, and reword some descriptions for clarity and consistency --- pages/common/sass.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/sass.md b/pages/common/sass.md index 9cd89e402..3872daacc 100644 --- a/pages/common/sass.md +++ b/pages/common/sass.md @@ -1,19 +1,19 @@ -# Sass +# sass > Converts SCSS or Sass files to CSS. -- Output converted file to stdout: +- Convert a SCSS or Sass file to CSS and print out the result: `sass {{inputfile.scss|inputfile.sass}}` -- Immediately convert SCSS or Sass file to CSS to specified output file: +- Convert a SCSS or Sass file to CSS and save the result to a file: `sass {{inputfile.scss|inputfile.sass}} {{outputfile.css}}` -- Watch SCSS or Sass file for changes and output or update CSS file with same filename: +- Watch a SCSS or Sass file for changes and output or update the CSS file with same filename: `sass --watch {{inputfile.scss|inputfile.sass}}` -- Watch SCSS or Sass file for changes and output or update CSS file with specified filename: +- Watch a SCSS or Sass file for changes and output or update the CSS file with the given filename: `sass --watch {{inputfile.scss|inputfile.sass}}:{{outputfile.css}}`