diff --git a/litedoc/syntax/node.py b/litedoc/syntax/node.py index 31ca7bc..3380280 100644 --- a/litedoc/syntax/node.py +++ b/litedoc/syntax/node.py @@ -214,7 +214,7 @@ def markdown(self, lang: str, indent: int = 0, **kwargs) -> str: if len(self.decorators) > 0: for decorator in self.decorators: if decorator in special_decorators: - md += PREFIX + f"@[`{decorator}`]({special_decorators[decorator]})\n" + md += PREFIX + f"[`@{decorator}`]({special_decorators[decorator]})\n" else: md += PREFIX + f"`@{decorator}`\n"