mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-21 20:38:01 +00:00
17 lines
594 B
Python
17 lines
594 B
Python
""" Pagermaid hyperlink plugin. by @OahiewUoil """
|
||
|
||
from pagermaid import version
|
||
from pagermaid.listener import listener
|
||
from pagermaid.utils import alias_command
|
||
|
||
|
||
@listener(is_plugin=True, outgoing=True, command=alias_command("hl"),
|
||
description="生成隐藏链接。非链接的纯文字将直接隐藏。",
|
||
parameters="<link>")
|
||
async def hyperlink(context):
|
||
await context.edit(f"正在生成 . . .")
|
||
if context.arguments:
|
||
link = context.arguments
|
||
else:
|
||
link = ''
|
||
await context.edit(f"[ㅤㅤㅤㅤㅤㅤㅤ]({link})", link_preview=False) |