mako: Fix snippet and frontmatter (#1824)

This commit is contained in:
Rico Sta. Cruz 2023-07-19 23:03:05 +10:00
parent ba8d9189ae
commit 9c2b6d725f
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
--- ---
title: mako title: Mako
category: Python category: Python
layout: 2017/sheet layout: 2017/sheet
--- ---
@ -14,7 +14,7 @@ Escaped for HTML: ${x | h}
### Control structures ### Control structures
```html ```
% for x in range(5): % for x in range(5):
% if x % 2 == 0: % if x % 2 == 0:
${x} is even! ${x} is even!