From 3ea0374dfecca43599768b3e72b56b4aa71619a8 Mon Sep 17 00:00:00 2001 From: snowy Date: Thu, 29 Aug 2024 15:49:30 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E4=BC=98=E5=8C=96=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E5=AE=9A=E4=B9=89=E7=9A=84=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- litedoc/syntax/node.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litedoc/syntax/node.py b/litedoc/syntax/node.py index 4891b10..ebb9ff1 100644 --- a/litedoc/syntax/node.py +++ b/litedoc/syntax/node.py @@ -180,9 +180,9 @@ def markdown(self, lang: str, indent: int = 0) -> str: md += PREFIX + f"### `@{decorator}`\n" if self.is_async: - md += PREFIX + f"### *async {func_type}* " + md += PREFIX + f"### ***async {func_type}*** " else: - md += PREFIX + f"### *{func_type}* " + md += PREFIX + f"### ***{func_type}*** " # code start # 配对位置参数和位置参数默认值,无默认值用TypeHint.NO_DEFAULT