Problem Statement
When sharing code snippets in Markdown (issues, PRs, comments, READMEs, etc.), it is very common to highlight a specific range of lines from a larger file, such as lines 10–20.
(I'm working on some agent app that shows lots of diff codes)
Proposed Solution
// ```javascript {linenos=10}
console.log("This is line 10");
console.log("This is line 11");
// ... up to line 20
// ```
Maybe it already supports this feature? But i can not find docs about that
Alternatives Considered
No response
Use Case
Priority
None
Contribution
Additional Context
No response