From 4a0ef457020f6b86d733dfc16b73f620f044ec7c Mon Sep 17 00:00:00 2001 From: djdjz7 Date: Tue, 8 Jul 2025 22:50:09 +0800 Subject: [PATCH 1/2] fix: bypass markdown it render bug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit use `` instead of `**。**` to bypass a markdown it render bug, where bold text failed to be rendered --- basic/13-windows-overview.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/basic/13-windows-overview.md b/basic/13-windows-overview.md index 456d55a..8a75cc9 100644 --- a/basic/13-windows-overview.md +++ b/basic/13-windows-overview.md @@ -99,7 +99,7 @@ Windows 其实还有不少别的大小姐脾气,足见其不好用,尤其是 `HKLM` 是 Windows 注册表的核心根键之一。对于会调注册表的人而言,该注册表可以调优系统启动项或者其他性能参数。 -**对于小白,我建议你永远不要动这个东西。**如果一个教程说要修改`HKLM`项目,如可能,请试着寻找其他替代手段。 +对于小白,我建议你永远不要动这个东西。如果一个教程说要修改`HKLM`项目,如可能,请试着寻找其他替代手段。 直接修改 `HKLM` 可能导致系统崩溃或软件故障,操作前务必备份注册表并创建系统还原点——无论你能不能事先确认该修改是否正确。 @@ -176,6 +176,7 @@ C:\Users\Administrator>ren The syntax of the command is incorrect. --------------- + 这是PS的ren: > ren From 33ec28125fde68e443564e7247b6323b30ec1e62 Mon Sep 17 00:00:00 2001 From: djdjz7 Date: Tue, 8 Jul 2025 22:51:16 +0800 Subject: [PATCH 2/2] chore: use plaintext instead of arduino for syntax highlighting why does it even exist in the first place? --- basic/09-drive-your-computer-5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic/09-drive-your-computer-5.md b/basic/09-drive-your-computer-5.md index c28f3a5..b172c64 100644 --- a/basic/09-drive-your-computer-5.md +++ b/basic/09-drive-your-computer-5.md @@ -101,7 +101,7 @@ print("Updated Average:", calc(numbers)) 以下是运行代码后输出的信息: -```arduino +```plaintext Average: 30.0 Traceback (most recent call last): File "example.py", line 10, in