Skip to content

Commit 850e290

Browse files
committed
Add dark mode
1 parent 887b3c9 commit 850e290

File tree

1 file changed

+37
-20
lines changed

1 file changed

+37
-20
lines changed

render/templates/README.md

+37-20
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
<!--
1+
<!--
22
⚠️⚠️ WARNING: This file is generated by `make render`. Do not edit manually!
33
See `CONTRIBUTING.md` for more information.
44
-->
55

6-
![Logo](assets/idiomatic-rust.png)
6+
<picture >
7+
<source media="(prefers-color-scheme: dark)" srcset="assets/idiomatic-rust-dark.png">
8+
<img src="assets/idiomatic-rust.png" />
9+
</picture>
710

811
[![Check Links](https://github.com/mre/idiomatic-rust/workflows/Check%20Links/badge.svg)](https://github.com/mre/idiomatic-rust/actions/workflows/check_links.yml)
912

1013
This repository collects resources for writing clean, idiomatic Rust code.
1114
You can find a sortable/searchable version of this list [here](https://corrode.dev/idiomatic-rust/).
1215

13-
> *Idiomatic* coding means following the conventions of a given language. It is
16+
> _Idiomatic_ coding means following the conventions of a given language. It is
1417
> the most concise, convenient, and common way of accomplishing a task in that
1518
> language, rather than forcing it to work in a way the author is familiar with
1619
> from a different language. - Adapted from [Tim
@@ -19,50 +22,65 @@ You can find a sortable/searchable version of this list [here](https://corrode.d
1922
Contributions welcome! To add missing resources, [please refer to the contributing documentation](https://github.com/mre/idiomatic-rust/blob/master/CONTRIBUTING.md).
2023

2124
## ⚙ Projects
25+
2226
{% for project in projects %}
23-
* [{{ project.title }}]({{ project.url }}) — {{ project.description }}
24-
{%- endfor %}
27+
28+
- [{{ project.title }}]({{ project.url }}) — {{ project.description }}
29+
{%- endfor %}
2530

2631
## 🏋 Workshops
32+
2733
{% for workshop in workshops %}
28-
* [{{ workshop.title }}]({{ workshop.url }}) — {{ workshop.description }}
29-
{%- endfor %}
34+
35+
- [{{ workshop.title }}]({{ workshop.url }}) — {{ workshop.description }}
36+
{%- endfor %}
3037

3138
## 📖 Books
39+
3240
{% for book in books %}
33-
* [{{ book.title }}]({{ book.url }}) — {{ book.description }}
34-
{%- endfor %}
41+
42+
- [{{ book.title }}]({{ book.url }}) — {{ book.description }}
43+
{%- endfor %}
3544

3645
## 📰 Articles
46+
3747
{% for (year, resources) in articles %}
48+
3849
### {{ year }}
3950

4051
{% for resource in resources -%}
41-
* [{{ resource.title }}]({{ resource.url }}) — {{ resource.description }}
42-
{% endfor %}
43-
{%- endfor %}
52+
53+
- [{{ resource.title }}]({{ resource.url }}) — {{ resource.description }}
54+
{% endfor %}
55+
{%- endfor %}
4456

4557
## 🎤 Talks
58+
4659
{% for (year, resources) in talks %}
60+
4761
### {{ year }}
4862

4963
{% for resource in resources -%}
50-
* {{ resource.title }} — {{ resource.description }} [[Video]({{ resource.url }})]
51-
{% endfor %}
52-
{%- endfor %}
64+
65+
- {{ resource.title }} — {{ resource.description }} [[Video]({{ resource.url }})]
66+
{% endfor %}
67+
{%- endfor %}
5368

5469
## 💬 Forum
70+
5571
{% for (year, resources) in forum %}
72+
5673
### {{ year }}
5774

5875
{% for resource in resources -%}
59-
* [{{ resource.title }}]({{ resource.url }})
60-
{% endfor %}
61-
{%- endfor %}
76+
77+
- [{{ resource.title }}]({{ resource.url }})
78+
{% endfor %}
79+
{%- endfor %}
6280

6381
## 📜 History
6482

65-
Coming from Python, I loved the guidelines on how *idiomatic Python* looks like. I was inspired by the likes of Peter Norvig, who wrote amazing articles on [spellcheckers](https://norvig.com/spell-correct.html) and [sudoku solvers](https://norvig.com/sudoku.html); and, of course, the [Zen of Python](https://www.python.org/dev/peps/pep-0020/). For Rust, there is no such thing as the Zen of Python, however, so I started collecting my own resources.
83+
Coming from Python, I loved the guidelines on how _idiomatic Python_ looks like. I was inspired by the likes of Peter Norvig, who wrote amazing articles on [spellcheckers](https://norvig.com/spell-correct.html) and [sudoku solvers](https://norvig.com/sudoku.html); and, of course, the [Zen of Python](https://www.python.org/dev/peps/pep-0020/). For Rust, there is no such thing as the Zen of Python, however, so I started collecting my own resources.
6684
The goal of this project is to create a peer-reviewed collection of articles/talks/repos, which teach idiomatic Rust style. It's a community project and you can contribute.
6785

6886
## 🔏 License
@@ -71,4 +89,3 @@ The goal of this project is to create a peer-reviewed collection of articles/tal
7189

7290
To the extent possible under law, [Matthias Endler](https://endler.dev) has waived all copyright and related or neighboring rights to this work.
7391
Logo adapted from [FreePik.com](https://www.freepik.com/free-vector/crabs-pattern-design_1093131.htm).
74-

0 commit comments

Comments
 (0)