- 增加 `ReplyMergeExtension`, 其可以将回复的原消息合并到当前消息作为一部分参数:
python
from nonebot_plugin_alconna.builtins.extensions.reply import ReplyMergeExtension
preview = Command("preview <content:any>", "预览").build(auto_send_output=True, extensions=[ReplyMergeExtension()])
preview.handle()
async def preview_h(content):
await preview.finish("rendering preview: " + content)
<img width="430" alt="03ecceef1683874e924ef7a9f12762e9" src="https://github.com/nonebot/plugin-alconna/assets/42648639/0755f016-da96-4291-b372-e7d1fb6735cf">
**Full Changelog**: https://github.com/nonebot/plugin-alconna/compare/v0.46.1...v0.46.3