From 2a177bff7c33a7d7272b8740a8418161618edac1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9A=E7=BE=85=E7=8B=BC?= Date: Sun, 1 Dec 2024 00:40:51 +0800 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68e8b12777..1b031270f9 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ _多功能、多语言、多平台支持的异步聊天机器人_ ### 自搭建 -你可以参考[此处](https://bot.teahouse.team/wiki/%E8%87%AA%E6%90%AD%E5%BB%BA)来尝试搭建。 +推荐前往[此项目](https://github.com/Teahouse-Studios/akari-bot-core)通过小可核心版进行搭建,你可以参考[此处](https://bot.teahouse.team/wiki/%E8%87%AA%E6%90%AD%E5%BB%BA)来尝试搭建。 若遇到问题,可以通过 [Issue](https://github.com/Teahouse-Studios/akari-bot/issues/new) 或其他方式咨询开发者。 From 544a416bb81a83b4dd502cfd5510b511ded2ecd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9A=E7=BE=85=E7=8B=BC?= Date: Sun, 1 Dec 2024 00:47:30 +0800 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b031270f9..8642030e5b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ _多功能、多语言、多平台支持的异步聊天机器人_ 小可目前支持以下平台: -- QQ +- QQ(官方/第三方) - Discord - Telegram - KOOK From 6589c8c4ae50bef56ffbd96a5f523702f1e2e36b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=9A=E7=BE=85=E7=8B=BC?= Date: Sun, 1 Dec 2024 01:28:37 +0800 Subject: [PATCH 3/3] Update help_doc_detail.html --- assets/templates/help_doc_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/templates/help_doc_detail.html b/assets/templates/help_doc_detail.html index 49784b26a6..bcacfc5f57 100644 --- a/assets/templates/help_doc_detail.html +++ b/assets/templates/help_doc_detail.html @@ -125,7 +125,7 @@

{{ help_name }}

{% if doc == msg.locale.t("core.help.options") %}
{{ msg.locale.t("core.help.options") }}
{% else %} -
{{ escape(doc) }}
+
{{ escape(doc) | safe }}
{% endif %} {% endfor %} @@ -147,7 +147,7 @@

{{ help_name }}

{% set pattern = regex.pattern if isinstance(regex.pattern, str) else (regex.pattern.pattern if isinstance(regex.pattern, repattern) else None) %} {% if pattern %} -
{{ escape(pattern) }} {{ msg.locale.t("core.message.help.regex.detail", +
{{ escape(pattern) | safe }} {{ msg.locale.t("core.message.help.regex.detail", msg=msg.locale.t_str(regex.desc)) if regex.desc else msg.locale.t("core.message.help.regex.no_information") }}
{%- endif %}