From 797b60b802a5cb3242a7e2347d9f2d2ffabbee6d Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Thu, 21 Mar 2024 01:02:25 +0000 Subject: [PATCH] wrong fence name --- docs/src/content/docs/reference/scripts/parsers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/reference/scripts/parsers.md b/docs/src/content/docs/reference/scripts/parsers.md index 6c25386261..692d4f629c 100644 --- a/docs/src/content/docs/reference/scripts/parsers.md +++ b/docs/src/content/docs/reference/scripts/parsers.md @@ -137,7 +137,7 @@ The `parsers.DOCX` function reads a .docx file as raw text. The `parsers.INI` parses [.ini](https://en.wikipedia.org/wiki/INI_file) files, typically using for configuration files. This format is similar to the `key=value` format. -```env +```txt KEY=VALUE ``` @@ -146,7 +146,7 @@ KEY=VALUE The `parsers.dotEnv` parses [.env](https://www.dotenv.org/) files, typically using for configuration files. This format is similar to the `key=value` format. -```env +```txt KEY=VALUE ```