From fc2db80952f1fc1c77c101fb76b529502016329a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 17 Dec 2025 16:31:24 +0800 Subject: Escape special characters in markdown formatting The `md` function now handles backslash escapes for specific characters (*, <, >, `) to allow them to be displayed literally in formatted text. This fixes rendering of help documentation that uses these characters as symbols. --- locales/help_docs/en.yml | 4 ++-- locales/help_docs/zh-CN.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'locales/help_docs') diff --git a/locales/help_docs/en.yml b/locales/help_docs/en.yml index 048cf09..a73bc54 100644 --- a/locales/help_docs/en.yml +++ b/locales/help_docs/en.yml @@ -875,14 +875,14 @@ jv: - Lost: %{path} moved_item: | - > Moved: Remote %{from} + \> Moved: Remote %{from} Local %{to} erased_item: | & Erased: %{path} modified_item: | - * Modified: %{path} + \* Modified: %{path} invalid_modified_item: | x Modified: %{path} (%{reason}) diff --git a/locales/help_docs/zh-CN.yml b/locales/help_docs/zh-CN.yml index fd83ca7..452b497 100644 --- a/locales/help_docs/zh-CN.yml +++ b/locales/help_docs/zh-CN.yml @@ -867,14 +867,14 @@ jv: - 丢失: %{path} moved_item: | - > 移动:远程 %{from} + \> 移动:远程 %{from} 本地 %{to} erased_item: | & 擦除: %{path} modified_item: | - * 修改: %{path} + \* 修改: %{path} invalid_modified_item: | x 修改: %{path}(%{reason}) -- cgit