From dd0ce5c79a45e8856e8e89129602439267707821 Mon Sep 17 00:00:00 2001 From: Matt K <4858543+mtklr@users.noreply.github.com> Date: Fri, 24 Sep 2021 13:27:37 +0000 Subject: [PATCH] Make whitespace separation consistent/explicit (#1628) --- docs/content/documentation/content/syntax-highlighting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/documentation/content/syntax-highlighting.md b/docs/content/documentation/content/syntax-highlighting.md index 3eadfd21..e68ac497 100644 --- a/docs/content/documentation/content/syntax-highlighting.md +++ b/docs/content/documentation/content/syntax-highlighting.md @@ -269,7 +269,7 @@ highlight(code); ```` - `hl_lines` to highlight lines. You must specify a list of inclusive ranges of lines to highlight, -separated by whitespaces. Ranges are 1-indexed and `linenostart` doesn't influence the values, it always refers to the codeblock line number. +separated by ` ` (whitespace). Ranges are 1-indexed and `linenostart` doesn't influence the values, it always refers to the codeblock line number. ```` ```rust,hl_lines=1 3-5 9 @@ -280,7 +280,7 @@ highlight(code); ```` - `hide_lines` to hide lines. You must specify a list of inclusive ranges of lines to hide, -separated by ` `. Ranges are 1-indexed. +separated by ` ` (whitespace). Ranges are 1-indexed. ```` ```rust,hide_lines=1-2