From 9c2b6d725f71ea6dd9b21469e385496e1fd861d0 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Wed, 19 Jul 2023 23:03:05 +1000 Subject: [PATCH] mako: Fix snippet and frontmatter (#1824) --- mako.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mako.md b/mako.md index 77a067f94..174d5a298 100644 --- a/mako.md +++ b/mako.md @@ -1,5 +1,5 @@ --- -title: mako +title: Mako category: Python layout: 2017/sheet --- @@ -14,7 +14,7 @@ Escaped for HTML: ${x | h} ### Control structures -```html +``` % for x in range(5): % if x % 2 == 0: ${x} is even!