You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
For large code blocks, we need high-light effect on specific lines, these high light lines are better to explain and anwser the question.
Describe the solution you'd like
Like code line high-light in mkdocs material, the high-light syntax looks like this:
``` py hl_lines="2 3"
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]
```
and we get the effect:
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
For large code blocks, we need high-light effect on specific lines, these high light lines are better to explain and anwser the question.
Describe the solution you'd like
Like code line high-light in mkdocs material, the high-light syntax looks like this:
and we get the effect:
The text was updated successfully, but these errors were encountered: