Rewrite Markdown convention rule: Do not allow reference links

This commit is contained in:
Tobias Killer 2021-04-09 09:30:39 +02:00
parent ada42d7023
commit 7250daea53
No known key found for this signature in database
GPG Key ID: 2DA5EF6F6E40B328

View File

@ -350,24 +350,8 @@ When making contributions, please try to observe the following style conventions
The `#` symbol preceding each comment is ambiguous with a root command prompt.
Instead, put your comments *outside* of the code block in normal prose.
* Use full reference links like this
```
Visit [our website][website].
[website]: https://example.com/
```
over shortcut reference links and collapsed reference links like these
```
Visit [our website].
Visit [our website][].
[our website]: https://example.com/
```
* Rationale: This makes translations into other languages with different linguistic cases easier.
* Use non-reference-style links like `[website](https://example.com/)`.
Do *not* use reference links like `[website][example]`, `[website][]` or `[website]`.
([This][md] is a great source for learning about Markdown.)