fixed code highlight lines

This commit is contained in:
Kim, Jimin 2021-12-19 17:55:40 +09:00
parent fa16379e6d
commit 23a58ac864

View file

@ -54,7 +54,7 @@ A post have title, post date, tags, and content.
Here's a `code`. Here's a `code`.
```python {10,15,17-18} ```python {7,12,14-15}
print("And here's a language-specific code block") print("And here's a language-specific code block")
# with comments and line highlighting! # with comments and line highlighting!
@ -68,7 +68,7 @@ w = 257
print(z is w) # False. id(z) is not equal to id(w) print(z is w) # False. id(z) is not equal to id(w)
# Apparently python does this to save memory. # Apparently python does this to save memory usage.
# All integers between -5 and 256 share the same id. # All integers between -5 and 256 share the same id.
``` ```