Add support for line numbers in code blocks #112
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Description
Adds the ability to start highlighting specific lines in code blocks. Here's the implemented syntax.
lang
- Don't highlight any lineslang{4}
- Highlight just line 4lang{4-6}
- Highlight the range of lines from 4 to 6 (inclusive)lang{1,5}
- Highlight just lines 1 and 5 on their ownlang{1-3,5}
- Highlight 1 through 3 and then 5 on its ownlang{5,7,2-3}
- The order of lines don't matter3-2
will not work.This also adds the new
highlighter.line_numbers
configuration file option that will allow users to opt-in to displaying line numbers for all code blocks.This feature has been added to both the Markdown and RST engines.
Check List