From 535637ba06d7a878e124db2a390228376979dcb6 Mon Sep 17 00:00:00 2001 From: Anny Date: Sun, 26 Aug 2018 04:38:00 -0700 Subject: [PATCH] Add missing html end tag for code example in section 'For loops' (#7199) Merge pull request 7199 --- docs/_tutorials/convert-existing-site-to-jekyll.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/_tutorials/convert-existing-site-to-jekyll.md b/docs/_tutorials/convert-existing-site-to-jekyll.md index 379edc2e..872d78aa 100644 --- a/docs/_tutorials/convert-existing-site-to-jekyll.md +++ b/docs/_tutorials/convert-existing-site-to-jekyll.md @@ -316,7 +316,8 @@ We've only scratched the surface of what you can do with `for` loops in retrievi
  • {{ post.title}}
  • -{% endfor %}{% endraw %} +{% endfor %} +{% endraw %} ``` This loop would get the latest three posts that have a category called `podcasts` in the front matter.