Merge branch 'main' of github.com:sass/sass-site

* 'main' of github.com:sass/sass-site:
  Fixing typos (#725)
  Fix CI broken by sass/sass using literate. (#727)
This commit is contained in:
Jonny Gerig Meyer 2023-05-15 11:46:01 -04:00
commit d37286f40c
No known key found for this signature in database
2 changed files with 9 additions and 10 deletions

View File

@ -143,14 +143,13 @@ namespace :sass do
Dir.chdir(".language") do
sh %{npm install}
sh %{ln -sf ../.language/node_modules ../tool/node_modules}
sh %{npx typedoc \
--plugin ../tool/typedoc-theme.cjs --theme sass-site \
--out ../old_source/documentation/js-api \
--cleanOutputDir \
js-api-doc/index.d.ts
sh %{npm run typedoc -- \
--plugin ../tool/typedoc-theme.js --theme sass-site \
--out ../source/documentation/js-api \
--cleanOutputDir
}
end
sh %{rm -r old_source/documentation/js-api/assets}
sh %{rm -r source/documentation/js-api/assets}
end
end

View File

@ -21,9 +21,9 @@ compiled to a CSS comment. They're also called **loud comment**, by contrast
with silent comments. A multi-line comment that's compiled to CSS may contain
[interpolation][], which will be evaluated before the comment is compiled.
By default, multi-line comments be stripped from the compiled CSS in [compressed
mode][]. If a comment begins with `/*!`, though, it will always be included in
the CSS output.
By default, multi-line comments will be stripped from the compiled CSS in
[compressed mode][]. If a comment begins with `/*!`, though, it will always be
included in the CSS output.
[statement]: structure#statements
[interpolation]: ../interpolation
@ -83,7 +83,7 @@ case, they have exactly the same syntax as they do in SCSS.
When writing style libraries using Sass, you can use comments to document the
[mixins][], [functions][], [variables][], and [placeholder selectors][] that
your library provides, as well as the library itself. These are comments are
your library provides, as well as the library itself. These comments are
read by the [SassDoc][] tool, which uses them to generate beautiful
documentation. Check out [the Susy grid engine][susy]'s documentation to see it
in action!