Skip to content

Commit 8710cab

Browse files
authored
Convert rST code block to Markdown in README (#1981)
2 parents b002d9c + 9075080 commit 8710cab

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,17 @@ restricting functionality too much.
2727

2828
## In A Nutshell
2929

30-
.. code-block:: jinja
31-
32-
{% extends "base.html" %}
33-
{% block title %}Members{% endblock %}
34-
{% block content %}
35-
<ul>
36-
{% for user in users %}
37-
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
38-
{% endfor %}
39-
</ul>
40-
{% endblock %}
41-
30+
```jinja
31+
{% extends "base.html" %}
32+
{% block title %}Members{% endblock %}
33+
{% block content %}
34+
<ul>
35+
{% for user in users %}
36+
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
37+
{% endfor %}
38+
</ul>
39+
{% endblock %}
40+
```
4241

4342
## Donate
4443

0 commit comments

Comments
 (0)