]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Convert rST code block to Markdown in README 1981/head
authorTimothée Mazzucotelli <dev@pawamoy.fr>
Sun, 19 May 2024 13:32:56 +0000 (15:32 +0200)
committerGitHub <noreply@github.com>
Sun, 19 May 2024 13:32:56 +0000 (15:32 +0200)
README.md

index 330970b5948da55d3dffc2b412eec038587a9fc5..f4aa7cbea5d88aef2fdeafb9457b3a5b26111439 100644 (file)
--- a/README.md
+++ b/README.md
@@ -27,18 +27,17 @@ restricting functionality too much.
 
 ## In A Nutshell
 
-.. code-block:: jinja
-
-    {% extends "base.html" %}
-    {% block title %}Members{% endblock %}
-    {% block content %}
-      <ul>
-      {% for user in users %}
-        <li><a href="{{ user.url }}">{{ user.username }}</a></li>
-      {% endfor %}
-      </ul>
-    {% endblock %}
-
+```jinja
+{% extends "base.html" %}
+{% block title %}Members{% endblock %}
+{% block content %}
+  <ul>
+  {% for user in users %}
+    <li><a href="{{ user.url }}">{{ user.username }}</a></li>
+  {% endfor %}
+  </ul>
+{% endblock %}
+```
 
 ## Donate