Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/sass Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# sass
> Converts SCSS or Sass files to CSS.
> More information: <https://sass-lang.com/documentation/cli/dart-sass>.
- Convert a SCSS or Sass file to CSS and print out the result:
`sass {{inputfile.scss|inputfile.sass}}`
- Convert a SCSS or Sass file to CSS and save the result to a file:
`sass {{inputfile.scss|inputfile.sass}} {{outputfile.css}}`
- 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 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}}`