diff --git a/README.md b/README.md
index d453373..2fac3cb 100644
--- a/README.md
+++ b/README.md
@@ -134,28 +134,28 @@ Let's continue with the previous example but turn template for rendering a singl
### Example 4: RSS support
- ```twig
- {% TWIG_BLOCK %}
- {% set items = 'http://domain.tld/feed/' | rss %}
-
- {% for item in cart %}
- -
- {{ item.title }} ({{ item.pubDate|date('m/d/Y') }})
-
{{ item.description|raw }}
-
- {% endfor %}
-
- {% END_TWIG_BLOCK %}
- ```
+```twig
+ {% TWIG_BLOCK %}
+ {% set items = 'http://domain.tld/feed/' | rss %}
+
+ {% for item in items %}
+ -
+ {{ item.title }} ({{ item.pubDate|date('m/d/Y') }})
+
{{ item.description|raw }}
+
+ {% endfor %}
+
+ {% END_TWIG_BLOCK %}
+```
### Example 5: RSS related categories to contact's segments
- ```twig
+```twig
{% TWIG_BLOCK %}
{% set items = 'http://domain.tld/feed/' | rss('segments') %}
- {% for item in cart %}
+ {% for item in items %}
-
{{ item.title }} ({{ item.pubDate|date('m/d/Y') }})
{{ item.description|raw }}
@@ -163,7 +163,7 @@ Let's continue with the previous example but turn template for rendering a singl
{% endfor %}
{% END_TWIG_BLOCK %}
- ```
+```
## Credits