Documented the use of line ranges in hl_lines (#2903)

Co-authored-by: Vedran Miletić <vedran@miletic.net>
This commit is contained in:
Vedran Miletić 2021-08-02 14:19:42 +02:00 committed by GitHub
parent b7e5b3d8fc
commit d7894a3f02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -368,6 +368,30 @@ def bubble_sort(items):
items[j], items[j + 1] = items[j + 1], items[j]
```
Line ranges can also be used for conveniently specifying multiple lines.
_Example_:
```` markdown
``` python hl_lines="2-5"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
```
````
_Result_:
``` python hl_lines="2-5"
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
```
### Highlighting inline code blocks
When [InlineHilite][21] is enabled, inline code blocks can be highlighted by