diff --git a/README.md b/README.md index 1316291928..cdb813d68b 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ _多功能、多语言、多平台支持的异步聊天机器人_ 小可目前支持以下平台: -- QQ +- QQ(官方/第三方) - Discord - Telegram - KOOK @@ -73,7 +73,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) 或其他方式咨询开发者。 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 %}