Remove anchor links from <li> headers

This commit is contained in:
Jonny Gerig Meyer 2023-05-19 16:23:20 -04:00
parent 86e305922f
commit 0e386b6660
No known key found for this signature in database
3 changed files with 22 additions and 22 deletions

View File

@ -10,7 +10,7 @@ introduction: >
<ul class="list-tiled">
<li>
## Resources
<h2>Resources</h2>
- [`sass-spec`](https://github.com/sass/sass-spec) is a suite of
implementation-agnostic test cases for verifying that a Sass
@ -32,7 +32,7 @@ introduction: >
</li>
<li>
## Requirements
<h2>Requirements</h2>
We whole-heartedly love new implementations of Sass, but we do have a
few restrictions that we ask those implementations to follow in order to
@ -57,7 +57,7 @@ important that there be a unified vision for the language design.
</li>
<li>
## Making Language Changes
<h2>Making Language Changes</h2>
Sass can still evolve as a language, of course. We have [a process][] for
proposing and iterating on new language features that anyone can

View File

@ -11,13 +11,13 @@ navigation: |
<nav class="sl-c-list-navigation-wrapper">
- [SassC](#sass-c)
- [SassC](#sassc)
- [Crystal](#crystal)
- [Go](#go)
- [Java](#java)
- [JavaScript](#javascript)
- [Lua](#lua)
- [.NET](#.net)
- [.NET](#net)
- [Node](#node)
- [Perl](#perl)
- [PHP](#php)
@ -51,7 +51,7 @@ Below are the LibSass wrappers that we're currently aware of. Sometimes there
are multiple wrappers per language -- in those cases, we put the most
recently-updated wrapper first.
- ### Sass C
- <h3 id="sassc">Sass C</h3>
[SassC](https://github.com/sass/sassc) (get it?) is a wrapper written in C.
@ -71,12 +71,12 @@ recently-updated wrapper first.
./bin/sassc [input file] > output.css
```
- ### Crystal
- <h3 id="crystal">Crystal</h3>
[sass.cr](https://github.com/straight-shoota/sass.cr) is a LibSass wrapper for
the [Crystal programming language](https://crystal-lang.org/).
- ### Go
- <h3 id="go">Go</h3>
[go-libsass](https://github.com/wellington/go-libsass) has the most active
GoLang wrapper. [gosass](https://github.com/moovweb/gosass) is another LibSass
@ -87,24 +87,24 @@ recently-updated wrapper first.
[wellington/sass](https://github.com/wellington/sass) is an in-progress pure
Go Sass lexer, parser, and compiler.
- ### Java
- <h3 id="java">Java</h3>
There is one Java wrapper --- [jsass](https://github.com/bit3/jsass). There is
also a plugin for Maven --- [LibSass Maven
plugin](https://gitlab.com/haynes/libsass-maven-plugin).
- ### JavaScript
- <h3 id="javascript">JavaScript</h3>
The [sass.js](https://github.com/medialize/sass.js) project makes LibSass
available as pure JavaScript. There's a way to [test it in the
browser](https://sass.js.org/), too.
- ### Lua
- <h3 id="lua">Lua</h3>
The Lua wrapper is found at
[lua-sass](https://github.com/craigbarnes/lua-sass).
- ### .NET
- <h3 id="net">.NET</h3>
[LibSass Host](https://github.com/Taritsyn/LibSassHost) is updated regularly,
and is probably the best bet. There's also
@ -112,25 +112,25 @@ recently-updated wrapper first.
[NSass](https://github.com/TBAPI-0KA/NSass), although they haven't been
updated in a while.
- ### Node
- <h3 id="node">Node</h3>
The [node-sass](https://github.com/sass/node-sass) project has proven to be
popular, and we've taken it into the main Sass GitHub repo. Check out its
package page [here](https://www.npmjs.com/package/node-sass), and [there's a
dedicated twitter account](https://twitter.com/nodesass) for updates.
- ### Perl
- <h3 id="perl">Perl</h3>
The [CSS::Sass](https://github.com/sass/perl-libsass) project is updated
regularly. There's the [Text-Sass-XS](https://github.com/ysasaki/Text-Sass-XS)
project, too, although it hasn't been updated in a while.
- ### PHP
- <h3 id="php">PHP</h3>
The [SassPHP](https://github.com/absalomedia/sassphp) project is an updated
fork of an [older PHP version](https://github.com/jamierumbelow/sassphp).
- ### Python
- <h3 id="python">Python</h3>
The [libsass-python](https://github.com/sass/libsass-python) project is
updated regularly. There are more details on [its own
@ -142,24 +142,24 @@ recently-updated wrapper first.
[SassPython](https://github.com/marianoguerra/SassPython), haven't been
updated in a while.
- ### Ruby
- <h3 id="ruby">Ruby</h3>
LibSass has also been ported back into Ruby for the
[sassc-ruby](https://github.com/sass/sassc-ruby) project.
- ### R
- <h3 id="r">R</h3>
The [R](https://www.r-project.org/) [Sass
package](https://github.com/rstudio/sass) wraps LibSass with additional
caching and bundling methods. [Extended
documentation](https://rstudio.github.io/sass/).
- ### Rust
- <h3 id="rust">Rust</h3>
The [`sass_rs`](https://github.com/compass-rs/sass-rs) crate is a LibSass
wrapper and is updated regularly.
- ### Scala
- <h3 id="scala">Scala</h3>
The only Scala project, [Sass-Scala](https://github.com/kkung/Sass-Scala),
hasn't been updated in a couple of years.

View File

@ -7,7 +7,7 @@ introduction: >
migrate to another implementation.
---
- ## But Why?
- <h2>But Why?</h2>
When Natalie and Hampton first created Sass in 2006, Ruby was the language at
the cutting edge of web development, the basis of their already-successful
@ -28,7 +28,7 @@ introduction: >
[Dart Sass]: /dart-sass
[LibSass]: /libsass
- ## Migrating Away
- <h2>Migrating Away</h2>
If you run Ruby Sass using the command-line `sass` executable, all you need to
do is install Dart Sass's [command-line executable][install] instead. The