Skip to content

Commit

Permalink
Merge branch 'Teahouse-Studios:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
DoroWolf authored Nov 30, 2024
2 parents 351c6be + 6589c8c commit 209451b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ _多功能、多语言、多平台支持的异步聊天机器人_

小可目前支持以下平台:

- QQ
- QQ(官方/第三方)
- Discord
- Telegram
- KOOK
Expand Down Expand Up @@ -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) 或其他方式咨询开发者。

Expand Down
4 changes: 2 additions & 2 deletions assets/templates/help_doc_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ <h3>{{ help_name }}</h3>
{% if doc == msg.locale.t("core.help.options") %}
<div class="available-options-header">{{ msg.locale.t("core.help.options") }}</div>
{% else %}
<div class="help-detail">{{ escape(doc) }}</div>
<div class="help-detail">{{ escape(doc) | safe }}</div>
{% endif %}
{% endfor %}
</div>
Expand All @@ -147,7 +147,7 @@ <h3>{{ help_name }}</h3>
{% set pattern = regex.pattern if isinstance(regex.pattern, str) else
(regex.pattern.pattern if isinstance(regex.pattern, repattern) else None) %}
{% if pattern %}
<div class="help-detail">{{ escape(pattern) }} {{ msg.locale.t("core.message.help.regex.detail",
<div class="help-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") }}</div>
{%- endif %}
Expand Down

0 comments on commit 209451b

Please sign in to comment.