mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:42:09 +02:00
sass: various tweaks
lowercase heading, and reword some descriptions for clarity and consistency
This commit is contained in:
parent
64a30e82ca
commit
80de84361b
1 changed files with 5 additions and 5 deletions
|
@ -1,19 +1,19 @@
|
||||||
# Sass
|
# sass
|
||||||
|
|
||||||
> Converts SCSS or Sass files to CSS.
|
> 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}}`
|
`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}}`
|
`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}}`
|
`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}}`
|
`sass --watch {{inputfile.scss|inputfile.sass}}:{{outputfile.css}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue