From 872760a02e105de3e923e64f18d99e8d373076a9 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Fri, 15 Sep 2023 21:55:55 +0200 Subject: [PATCH] Fix escaping of backslashes _index.md (#857) A single leading and training space character is stripped from [inline code](https://spec.commonmark.org/0.30/#example-330). --- docs/content/docs/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/_index.md b/docs/content/docs/_index.md index dafd7c60..ac9cf27f 100644 --- a/docs/content/docs/_index.md +++ b/docs/content/docs/_index.md @@ -240,7 +240,7 @@ Tera has a few literals that can be used: - booleans: `true` (or `True`) and `false` (or `False`) - integers - floats -- strings: text delimited by `""`, `''` or `` `` `` +- strings: text delimited by `""`, `''` or ` `` ` - arrays: a comma-separated list of literals and/or idents surrounded by `[` and `]` (trailing comma allowed) ### Variables