Skip to content

Commit 6f46250

Browse files
mgreterxzyfer
authored andcommitted
Fix links in Markdown after Github changed its parser
1 parent 6c8bbdc commit 6f46250

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

docs/api-value.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
`Sass_Values` are used to pass values and their types between the implementer
22
and LibSass. Sass knows various different value types (including nested arrays
33
and hash-maps). If you implement a binding to another programming language, you
4-
have to find a way to [marshal] [1] (convert) `Sass_Values` between the target
4+
have to find a way to [marshal][1] (convert) `Sass_Values` between the target
55
language and C. `Sass_Values` are currently only used by custom functions, but
66
it should also be possible to use them without a compiler context.
77

docs/build-on-windows.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ Both should be considered experimental (MinGW was better tested)!
33

44
## Building via MingGW (makefiles)
55

6-
First grab the latest [MinGW for windows] [1] installer. Once it is installed, you can click on continue or open the Installation Manager via `bin\mingw-get.exe`.
6+
First grab the latest [MinGW for windows][1] installer. Once it is installed, you can click on continue or open the Installation Manager via `bin\mingw-get.exe`.
77

88
You need to have the following components installed:
99
![Visualization of components installed in the interface](https://cloud.githubusercontent.com/assets/282293/5525466/947bf396-89e6-11e4-841d-4aa916f14de1.png)
1010

11-
Next we need to install [git for windows] [2]. You probably want to check the option to add it to the global path, but you do not need to install the unix tools.
11+
Next we need to install [git for windows][2]. You probably want to check the option to add it to the global path, but you do not need to install the unix tools.
1212

13-
If you want to run the spec test-suite you also need [ruby] [3] and a few gems available. Grab the [latest installer] [3] and make sure to add it the global path. Then install the missing gems:
13+
If you want to run the spec test-suite you also need [ruby][3] and a few gems available. Grab the [latest installer][3] and make sure to add it the global path. Then install the missing gems:
1414

1515
```bash
1616
gem install minitest

docs/build.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`libsass` is only a library and does not do much on its own. You need an implementation that you can use from the [command line] [6]. Or some [[bindings|Implementations]] to use it within your favorite programming language. You should be able to get [`sassc`] [6] running by following the instructions in this guide.
1+
`libsass` is only a library and does not do much on its own. You need an implementation that you can use from the [command line][6]. Or some [[bindings|Implementations]] to use it within your favorite programming language. You should be able to get [`sassc`][6] running by following the instructions in this guide.
22

33
Before starting, see [setup dev environment](setup-environment.md).
44

@@ -11,27 +11,27 @@ We try to keep the code as OS independent and standard compliant as possible. Re
1111

1212
Linux is the main target for `libsass` and we support two ways to build `libsass` here. The old plain makefiles should still work on most systems (including MinGW), while the autotools build is preferred if you want to create a [system library] (experimental).
1313

14-
- [Building with makefiles] [1]
15-
- [Building with autotools] [2]
14+
- [Building with makefiles][1]
15+
- [Building with autotools][2]
1616

1717
### Building on Windows (experimental)
1818

1919
Windows build support was added very recently and should be considered experimental. Credits go to @darrenkopp and @am11 for their work on getting `libsass` and `sassc` to compile with visual studio!
2020

21-
- [Building with MinGW] [3]
22-
- [Building with Visual Studio] [11]
21+
- [Building with MinGW][3]
22+
- [Building with Visual Studio][11]
2323

2424
### Building on Max OS X (untested)
2525

2626
Works the same as on linux, but you can also install LibSass via `homebrew`.
2727

28-
- [Building on Mac OS X] [10]
28+
- [Building on Mac OS X][10]
2929

3030
### Building a system library (experimental)
3131

3232
Since `libsass` is a library, it makes sense to install it as a shared library on your system. On linux this means creating a `.so` library via autotools. This should work pretty well already, but we are not yet committed to keep the ABI 100% stable. This should be the case once we increase the version number for the library to 1.0.0 or higher. On Windows you should be able get a `dll` by creating a shared build with MinGW. There is currently no target in the MSVC project files to do this.
3333

34-
- [Building shared system library] [4]
34+
- [Building shared system library][4]
3535

3636
Compiling with clang instead of gcc
3737
--
@@ -46,7 +46,7 @@ export CXX=/usr/bin/clang++
4646
Running the spec test-suite
4747
--
4848

49-
We constantly and automatically test `libsass` against the official [spec test-suite] [5]. To do this we need to have a test-runner (which is written in ruby) and a command-line tool ([`sassc`] [6]) to run the tests. Therefore we need to additionally compile `sassc`. To do this, the build files of all three projects need to work together. This may not have the same quality for all build flavors. You definitely need to have ruby (2.1?) installed (version 1.9 seems to cause problems at least on windows). You also need some gems installed:
49+
We constantly and automatically test `libsass` against the official [spec test-suite][5]. To do this we need to have a test-runner (which is written in ruby) and a command-line tool ([`sassc`][6]) to run the tests. Therefore we need to additionally compile `sassc`. To do this, the build files of all three projects need to work together. This may not have the same quality for all build flavors. You definitely need to have ruby (2.1?) installed (version 1.9 seems to cause problems at least on windows). You also need some gems installed:
5050

5151
```bash
5252
ruby -v
@@ -67,7 +67,7 @@ export LIBSASS_VERSION="x.y.z."
6767
Continuous Integration
6868
--
6969

70-
We use two CI services to automatically test all commits against the latest [spec test-suite] [5].
70+
We use two CI services to automatically test all commits against the latest [spec test-suite][5].
7171

7272
- [LibSass on Travis-CI (linux)][7]
7373
[![Build Status](https://travis-ci.org/sass/libsass.png?branch=master)](https://travis-ci.org/sass/libsass)

0 commit comments

Comments
 (0)