Skip to content

Commit df78a2a

Browse files
committed
Added more Markdown references
1 parent 35fba7b commit df78a2a

File tree

5 files changed

+27
-15
lines changed

5 files changed

+27
-15
lines changed

_data/routes.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,16 @@ about: "/about/"
1919
faq: "/frequently-asked-questions/"
2020
contributing: "/contributing/"
2121
gallery: "/gallery/"
22-
branding: "/brand-guidelines/"
22+
branding: "/brand-guidelines/"
23+
repo_core: "https://github.com/SassDoc/sassdoc"
24+
repo_theme: "https://github.com/SassDoc/sassdoc-theme-default"
25+
repo_theme_blank: "https://github.com/SassDoc/sassdoc-theme-blank"
26+
repo_site: "https://github.com/SassDoc/sassdoc.github.io"
27+
repo_extras: "https://github.com/SassDoc/sassdoc-extras"
28+
repo_converter: "https://github.com/SassDoc/sass-convert"
29+
repo_grunt: "https://github.com/SassDoc/grunt-sassdoc"
30+
repo_gulp: "https://github.com/SassDoc/gulp-sassdoc"
31+
repo_broccoli: "https://github.com/SassDoc/broccoli-sassdoc"
32+
repo_generator: "https://github.com/SassDoc/generator-sassdoc-theme"
33+
organisation: "https://github.com/SassDoc"
34+
repo_themeleon: "https://github.com/themeleon/themeleon"

contributing/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ If you need a quick reply or don't feel really comfortable with asking on a publ
2727

2828
So you think you've found a bug? Likely. We're all humans after all! Before even opening an issue, you have to know how SassDoc is architectured so you can submit an issue in the accurate repository:
2929

30-
* [Core](https://github.com/sassdoc/sassdoc): Main API
31-
* [Theme](https://github.com/sassdoc/sassdoc-theme-default): Theme, templates and styles
32-
* [Extras](https://github.com/sassdoc/sassdoc-extras): Extra tools for theme authors
33-
* [Grunt plugin](https://github.com/sassdoc/grunt-sassdoc): Grunt integration
34-
* [Gulp plugin](https://github.com/sassdoc/gulp-sassdoc): Gulp integration
35-
* [Broccoli plugin](https://github.com/sassdoc/broccoli-sassdoc): Broccoli integration
36-
* [Yeoman theme generator](https://github.com/sassdoc/generator-sassdoc-theme): theme generator
37-
* [Site](https://github.com/SassDoc/sassdoc.github.io): SassDoc's site
38-
* [Syntax converter](https://github.com/SassDoc/sass-convert): Sass to SCSS converter and the like
30+
* [Core][repo_core]: Main API
31+
* [Theme][repo_theme]: Theme, templates and styles
32+
* [Extras][repo_extras]: Extra tools for theme authors
33+
* [Grunt plugin][repo_grunt]: Grunt integration
34+
* [Gulp plugin][repo_gulp]: Gulp integration
35+
* [Broccoli plugin][repo_broccoli]: Broccoli integration
36+
* [Yeoman theme generator][repo_generator]: theme generator
37+
* [Site][repo_site]: SassDoc's site
38+
* [Syntax converter][repo_converter]: Sass to SCSS converter and the like
3939

4040
Please give GitHub's search a try first, to make sure someone didn't already submit something similar. If what you've found seems unique, be sure to open an issue in the appropriate repository with a clear title and a description as complete as possible.
4141

customising-the-view/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is done exactly like the regular configuration, within the same configurati
1111

1212
## Options
1313

14-
[SassDoc's default theme](https://github.com/SassDoc/sassdoc-theme-default) has a couple of options to give you some extra power over the view.
14+
[SassDoc's default theme][repo_theme] has a couple of options to give you some extra power over the view.
1515

1616
| Option | Type | Default |
1717
|---------------------|---------|-------------------------|
@@ -51,7 +51,7 @@ If you want to display aliases as well, change the value to `true`.
5151

5252
## Watermark display
5353

54-
The default theme from SassDoc displays a discret *© Made with love by [SassDoc](http://github.com/sassdoc) team.* in the footer, in order to promote the tool and share the love. You can turn off this watermak if you like, but we would really appreciate you to leave it if you use this theme.
54+
The default theme from SassDoc displays a discret *© Made with love by [SassDoc][organisation] team.* in the footer, in order to promote the tool and share the love. You can turn off this watermak if you like, but we would really appreciate you to leave it if you use this theme.
5555

5656
{% highlight js %}
5757
{

extra-tools/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ layout: default
55

66
## Introduction
77

8-
If you have made up so far into building your own theme, you'll be pleased to now SassDoc comes with some [extra tools](https://github.com/sassdoc/sassdoc-extras) for theme builders. Those filters add some features to SassDoc by post-processing the data.
8+
If you have made up so far into building your own theme, you'll be pleased to now SassDoc comes with some [extra tools][repo_extras] for theme builders. Those filters add some features to SassDoc by post-processing the data.
99

1010
## Markdown
1111

using-your-own-theme/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ projects, and publish it on npm so other people can use it too!
1010

1111
The easiest way for you to build a theme is to use the Yeoman generator. See [Theme Generator][theme_generator] to get started. You will be given the possibility to customize the theme to your needs based on prompts. It will output all the boilerplate files for you in a single command. Furthermore, the generated code is loaded with inline documentation so you don't get lost.
1212

13-
You can also have a look at [sassdoc-theme-blank](https://github.com/sassdoc/sassdoc-theme-blank) which is a fully documented empty theme you can tweak.
13+
You can also have a look at [sassdoc-theme-blank][repo_theme_blank] which is a fully documented empty theme you can tweak.
1414

1515
## Going manually
1616

@@ -37,7 +37,7 @@ You can find more informations on the Promises/A+ specification
3737
[here](http://promises-aplus.github.io/promises-spec/), but note the
3838
[`q` library](https://github.com/kriskowal/q) does a great job for this.
3939

40-
The [Themeleon](https://github.com/themeleon/themeleon) theming
40+
The [Themeleon][repo_themeleon] theming
4141
framework is compatible with this interface, and allows you to write
4242
themes without bothering with "low-level" considerations, like promises
4343
handling, raw `fs` calls, making sure the destination directory exists,

0 commit comments

Comments
 (0)