Skip to content

Commit b654fa5

Browse files
committed
fix(lint/markdown): resolve markdownlint violations
1 parent f9b59f0 commit b654fa5

3 files changed

Lines changed: 8 additions & 17 deletions

File tree

README.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Others:
7373
<https://github.com/orgs/torrust/projects/10/views/6>
7474

7575
## Implemented BitTorrent Enhancement Proposals (BEPs)
76-
>
76+
7777
> _[Learn more about BitTorrent Enhancement Proposals][BEP 00]_
7878
7979
- [BEP 03]: The BitTorrent Protocol.
@@ -113,8 +113,8 @@ podman run -it docker.io/torrust/tracker:develop
113113
114114
### Development Version
115115

116-
- Please ensure you have the _**[latest stable (or nightly) version of rust][rust]___.
117-
- Please ensure that your computer has enough RAM. _**Recommended 16GB.___
116+
- Please ensure you have the \_\*\*[latest stable (or nightly) version of rust][rust]\_\_\_.
117+
- Please ensure that your computer has enough RAM. \_\*\*Recommended 16GB.\_\_\_
118118

119119
#### Checkout, Test and Run
120120

@@ -217,7 +217,7 @@ This program is free software: you can redistribute it and/or modify it under th
217217

218218
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the [GNU Affero General Public License][AGPL_3_0] for more details.
219219

220-
You should have received a copy of the *GNU Affero General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
220+
You should have received a copy of the _GNU Affero General Public License_ along with this program. If not, see <https://www.gnu.org/licenses/>.
221221

222222
Some files include explicit copyright notices and/or license notices.
223223

@@ -250,43 +250,33 @@ This project was a joint effort by [Nautilus Cyberneering GmbH][nautilus] and [D
250250
[deployment_wf_b]: ../../actions/workflows/deployment.yaml/badge.svg
251251
[testing_wf]: ../../actions/workflows/testing.yaml
252252
[testing_wf_b]: ../../actions/workflows/testing.yaml/badge.svg
253-
254253
[bittorrent]: http://bittorrent.org/
255254
[rust]: https://www.rust-lang.org/
256255
[axum]: https://github.com/tokio-rs/axum
257256
[newtrackon]: https://newtrackon.com/
258257
[coverage]: https://app.codecov.io/gh/torrust/torrust-tracker
259258
[torrust]: https://torrust.com/
260-
261259
[dockerhub]: https://hub.docker.com/r/torrust/tracker/tags
262-
263260
[torrent_source_felid]: https://github.com/qbittorrent/qBittorrent/discussions/19406
264-
265261
[BEP 00]: https://www.bittorrent.org/beps/bep_0000.html
266262
[BEP 03]: https://www.bittorrent.org/beps/bep_0003.html
267263
[BEP 07]: https://www.bittorrent.org/beps/bep_0007.html
268264
[BEP 15]: https://www.bittorrent.org/beps/bep_0015.html
269265
[BEP 23]: https://www.bittorrent.org/beps/bep_0023.html
270266
[BEP 27]: https://www.bittorrent.org/beps/bep_0027.html
271267
[BEP 48]: https://www.bittorrent.org/beps/bep_0048.html
272-
273268
[containers.md]: ./docs/containers.md
274-
275269
[docs]: https://docs.rs/torrust-tracker/latest/
276270
[api]: https://docs.rs/torrust-tracker/latest/torrust_tracker/servers/apis/v1
277271
[http]: https://docs.rs/torrust-tracker/latest/torrust_tracker/servers/http
278272
[udp]: https://docs.rs/torrust-tracker/latest/torrust_tracker/servers/udp
279-
280273
[good first issues]: https://github.com/torrust/torrust-tracker/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22
281274
[discussions]: https://github.com/torrust/torrust-tracker/discussions
282-
283275
[guide.md]: https://github.com/torrust/.github/blob/main/info/contributing.md
284276
[agreement.md]: https://github.com/torrust/.github/blob/main/info/licensing/contributor_agreement_v01.md
285-
286277
[AGPL_3_0]: ./docs/licenses/LICENSE-AGPL_3_0
287278
[MIT_0]: ./docs/licenses/LICENSE-MIT_0
288279
[FSF]: https://www.fsf.org/
289-
290280
[nautilus]: https://github.com/orgs/Nautilus-Cyberneering/
291281
[Dutch Bits]: https://dutchbits.nl
292282
[Naim A.]: https://github.com/naim94a/udpt

contrib/bencode/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Bencode
2+
23
This library allows for the creation and parsing of bencode encodings.
34

4-
Bencode is the binary encoding used throughout bittorrent technologies from metainfo files to DHT messages. Bencode types include integers, byte arrays, lists, and dictionaries, of which the last two can hold any bencode type (they could be recursively constructed).
5+
Bencode is the binary encoding used throughout bittorrent technologies from metainfo files to DHT messages. Bencode types include integers, byte arrays, lists, and dictionaries, of which the last two can hold any bencode type (they could be recursively constructed).

contrib/dev-tools/su-exec/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# su-exec
2+
23
switch user and group id, setgroups and exec
34

45
## Purpose
@@ -21,7 +22,7 @@ name separated with colon (e.g. `nobody:ftp`). Numeric uid/gid values
2122
can be used instead of names. Example:
2223

2324
```shell
24-
$ su-exec apache:1000 /usr/sbin/httpd -f /opt/www/httpd.conf
25+
su-exec apache:1000 /usr/sbin/httpd -f /opt/www/httpd.conf
2526
```
2627

2728
## TTY & parent/child handling
@@ -43,4 +44,3 @@ PID USER TIME COMMAND
4344

4445
This does more or less exactly the same thing as [gosu](https://github.com/tianon/gosu)
4546
but it is only 10kb instead of 1.8MB.
46-

0 commit comments

Comments
 (0)