Merge branch 'main' into rustlingsua

This commit is contained in:
Mo Bitar
2026-05-09 12:32:23 +02:00
committed by GitHub
co-authored by GitHub
54 changed files with 1182 additions and 875 deletions
+3 -3
View File
@@ -6,11 +6,11 @@ compile_sass = false
build_search_index = false
[markdown]
highlight_code = true
highlight_theme = "dracula"
insert_anchor_links = "heading"
[markdown.highlighting]
theme = "dracula"
[extra]
logo_path = "images/happy_ferris.svg"
@@ -7,6 +7,7 @@ title = "Community Exercises"
- 🇯🇵 [Japanese Rustlings](https://github.com/sotanengel/rustlings-jp)A Japanese translation of the Rustlings exercises.
- 🇨🇳 [Simplified Chinese Rustlings](https://github.com/SandmeyerX/rustlings-zh-cn): A simplified Chinese translation of the Rustlings exercises.
- 🇺🇦 [Rustlings in Ukrainian](https://github.com/noroutine/rustlings-ua): Translation of the Rustlings exercises in Ukrainian.
- 🇰🇷 [Korean Rustlings](https://github.com/eoncheole/rustlings-kr): A Korean translation of the Rustlings exercises.
> You can use the same `rustlings` program that you installed with `cargo install rustlings` to run community exercises.
+4
View File
@@ -73,6 +73,10 @@ While working with Rustlings, please use a modern terminal for the best user exp
The default terminal on Linux and Mac should be sufficient.
On Windows, we recommend the [Windows Terminal](https://aka.ms/terminal).
### Offline documentation
Whenever you're working on Rustlings offline, you can access a local copy of the standard library documentation by running `rustup doc --std`.
## Usage
After being done with the setup, visit the [**usage**](@/usage/index.md) page for some info about using Rustlings 🚀
+2 -6
View File
@@ -41,14 +41,10 @@
@apply md:w-3/4 lg:w-3/5;
}
blockquote {
@apply px-3 pt-2 pb-0.5 mb-4 mt-2 border-s-4 border-white/80 bg-white/7 rounded-sm;
@apply px-3 pt-2 pb-px mb-4 mt-2 border-s-4 border-white/80 bg-white/7 rounded-sm;
}
pre {
@apply px-2 pt-2 pb-px overflow-x-auto text-sm sm:text-base rounded-sm mt-2 mb-4 after:content-[attr(data-lang)] after:text-[8px] after:opacity-40 selection:bg-white/15;
}
pre code mark {
@apply pb-0.5 pt-1 pr-px text-inherit rounded-xs;
@apply px-2 pt-2 pb-1.5 overflow-x-auto text-sm sm:text-base rounded-sm mt-2 mb-4 selection:bg-white/15;
}
}
+1 -1
View File
@@ -1,5 +1,5 @@
{
"dependencies": {
"@tailwindcss/cli": "^4.1"
"@tailwindcss/cli": "^4"
}
}