From 59e46be26271200bab52b96c8145ce8b5d012cf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Fri, 10 Jun 2022 23:24:14 +0800 Subject: [PATCH] fix: imgfinder format --- plugin/image_finder/keyword.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugin/image_finder/keyword.go b/plugin/image_finder/keyword.go index addd3a91..df88ed85 100644 --- a/plugin/image_finder/keyword.go +++ b/plugin/image_finder/keyword.go @@ -90,11 +90,10 @@ func init() { il.Width, "x", il.Height, "\n", "标题: ", il.Title, "\n", "副标题: ", il.AltTitle, "\n", - "ID: ", il.ID, - "简介: ", il.Description, "\n", - "画师: ", illust.UserName, "\n", - "画师ID: ", illust.UserId, "\n", + "ID: ", il.ID, "\n", + "画师: ", illust.UserName, "(", illust.UserId, ")", "\n", "分级:", il.Sanity, "\n", + strings.ReplaceAll(il.Description, "
", "\n"), printtags(reflect.ValueOf(&il.Tags)), ), ), ctxext.GetFirstMessageInForward(ctx))