From 6d354c51185acb9943afdf4a14e17f5fbb4f2352 Mon Sep 17 00:00:00 2001 From: David Sima Date: Mon, 6 Jul 2026 20:37:56 +0300 Subject: [PATCH] fix: fixed broken/wrong line highlight format --- src/pages/blocks/code/code-highlighted-line.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/blocks/code/code-highlighted-line.md b/src/pages/blocks/code/code-highlighted-line.md index d9d2dda..632183a 100644 --- a/src/pages/blocks/code/code-highlighted-line.md +++ b/src/pages/blocks/code/code-highlighted-line.md @@ -12,17 +12,17 @@ Highlight specific lines in code blocks to draw attention to important code sect Use `data-line` attribute after the language identifier: ```` -```console-data-line="1-2, 5, 9-20" +```console-data-line="1-2,5,9-20" ``` ```` ## Parameters -- **data-line**: Comma-separated list of line numbers or ranges to highlight (e.g., `"1-2, 5, 9-20"`) +- **data-line**: Comma-separated list of line numbers or ranges to highlight (e.g., `"1-2,5,9-20"`) ## Example -```javascript-data-line="2-3, 6" +```javascript-data-line="2-3,6" function processData(input) { const cleaned = input.trim(); // Highlighted const parsed = JSON.parse(cleaned); // Highlighted