From 23a58ac86407f0a42c294f9a39f3491714865813 Mon Sep 17 00:00:00 2001 From: developomp Date: Sun, 19 Dec 2021 17:55:40 +0900 Subject: [PATCH] fixed code highlight lines --- source/markdown/posts/test post.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/markdown/posts/test post.md b/source/markdown/posts/test post.md index f05ed13..450b1fa 100644 --- a/source/markdown/posts/test post.md +++ b/source/markdown/posts/test post.md @@ -54,7 +54,7 @@ A post have title, post date, tags, and content. Here's a `code`. -```python {10,15,17-18} +```python {7,12,14-15} print("And here's a language-specific code block") # with comments and line highlighting! @@ -68,7 +68,7 @@ w = 257 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. ```