Skip to content

Commit

Permalink
Merge branch 'main' of github.com:sass/sass-site
Browse files Browse the repository at this point in the history
* 'main' of github.com:sass/sass-site:
  Cut a release for a new Dart Sass version
  Clarify flow control scope documentation (sass#681)
  Add link to a new Maven plugin on the block. (sass#714)
  Fix a redirect loop for /documentation/functions (sass#712)
  Fix link in the blog post about CSS nesting (sass#713)
  • Loading branch information
jgerigmeyer committed Apr 7, 2023
2 parents c08dc4f + a333086 commit 33a39b4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
2 changes: 1 addition & 1 deletion config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
redirect "#{dir}/file.SCSS_FOR_SASS_USERS.html", to: '/documentation/syntax'
redirect "#{dir}/Sass/Script/Functions.html", to: '/documentation/modules'
redirect "#{dir}/Sass/Script/Functions.html", to: '/documentation/modules'
redirect "#{dir}/functions.html", to: '/documentation/functions'
redirect "#{dir}/functions.html", to: '/documentation/modules'
redirect "#{dir}/functions/css.html", to: '/documentation/at-rules/function#plain-css-functions'

Dir['old_source/documentation/modules/*.html.md.erb'].each do |file|
Expand Down
6 changes: 3 additions & 3 deletions old_source/documentation/variables.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ assign a value to a variable, or build up a value as part of a loop.
<% heads_up do %>
Variables in flow control scope can assign to existing variables in the outer
scope, but they can't declare new variables there. Make sure the variable is
already declared before you assign to it, even if you need to declare it as
`null`.
scope, but new variables declared in flow control scope won't be accessible in
the outer scope. Make sure the variable is already declared before you assign
to it, even if you need to declare it as `null`.
<% end %>

## Advanced Variable Functions
Expand Down
29 changes: 21 additions & 8 deletions old_source/install.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,33 @@ no_container: true
There are also community-maintained wrappers for the following languages:

%ul
%li
#{link_to 'Java', 'https://mvnrepository.com/artifact/de.larsgrefer.sass'},
including
#{link_to 'Gradle', 'https://docs.freefair.io/gradle-plugins/current/reference/#_embedded_sass'}
and
#{link_to 'Maven', 'https://github.com/HebiRobotics/sass-cli-maven-plugin'}
plugins.

%li
#{link_to 'Ruby', 'https://github.com/ntkme/sass-embedded-host-ruby#readme'}

%li
#{link_to 'Swift', 'https://github.com/johnfairh/swift-sass#readme'}

%li
#{link_to 'Java', 'https://mvnrepository.com/artifact/de.larsgrefer.sass'},
including:

%ul
%li
A
#{link_to 'Gradle plugin', 'https://docs.freefair.io/gradle-plugins/current/reference/#_embedded_sass'}.

%li
A lightweight
#{link_to 'Maven plugin wrapping the Sass CLI', 'https://github.com/HebiRobotics/sass-cli-maven-plugin'}.
It specifies the Sass version to use. The CLI arguments are
passed-in with an <code>&lt;args&gt;</code> list.

%li
A batteries-included
#{link_to 'Maven plugin wrapping Dart Sass', 'https://github.com/cleydyr/dart-sass-maven-plugin'}.
It bundles a fixed <code>dart-sass</code> version. The CLI arguments
are exposed as Maven parameters.

.sl-l-grid__column
:markdown
## Command Line
Expand Down

0 comments on commit 33a39b4

Please sign in to comment.