Add languages to code blocks

This commit is contained in:
Louis Dispa
2025-02-16 22:43:07 +01:00
parent 76e30d8950
commit f55d745bf7
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ It is available on:
https://uutils.github.io/coreutils/docs/
Can be generated with:
```
```bash
cargo run --bin uudoc --all-features
cd docs
mdbook build
@@ -20,7 +20,7 @@ It is available on:
https://uutils.github.io/dev/coreutils/
Can be generated with:
```
```bash
cargo doc --no-deps --all-features --workspace
```
+6 -6
View File
@@ -65,8 +65,8 @@ However, a bunch of work remains on the color side for a full GNU compat. Other
We have 12 remaining failing tests.
To get the list of failing tests, run:
```
$ ./util/remaining-gnu-error.py |grep "/ls/"
```bash
$ ./util/remaining-gnu-error.py | grep "/ls/"
```
- Difficulty: Medium
@@ -82,8 +82,8 @@ Most of the features in `cp` have been implemented by now.
However, some corner cases needs to be implemented. We have 16 remaining failing tests.
To get the list of failing tests, run:
```
$ ./util/remaining-gnu-error.py |grep "/cp/"
```bash
$ ./util/remaining-gnu-error.py | grep "/cp/"
```
- Difficulty: Medium
@@ -99,8 +99,8 @@ Most of the features in `mv` have been implemented by now.
However, some corner cases needs to be implemented. We have 10 remaining failing tests.
To get the list of failing tests, run:
```
$ ./util/remaining-gnu-error.py |grep "/mv/"
```bash
$ ./util/remaining-gnu-error.py | grep "/mv/"
```
- Difficulty: Medium