diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/_news_colors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/_news_colors.py b/tools/_news_colors.py index 36f97b60..16318fdb 100644 --- a/tools/_news_colors.py +++ b/tools/_news_colors.py @@ -110,7 +110,7 @@ class TxtLink(object): def __init__(self, stack): self.stack = stack def __format__(self, target): - return '##3' + target + self.stack[-1] + return '@@{link}|{text}@@'.format(link=target, text=target) class TxtSignature(object): __slots__ = ('stack') |