fix(route): fix MMDArchive example (#14762)

* fix(route): fix MMDArchive example

* Revert "fix(route): fix MMDArchive example"

This reverts commit 472fdaee1074551f7e447c431a4338d87e4cfb8d.

* fix(route): /booru/mmda fix MMDArchive example

---------

Co-authored-by: keweiye <keweiye@rich-f.com>
This commit is contained in:
N78Wy 2024-03-12 22:16:04 +08:00 committed by GitHub
parent 2fde5be567
commit dc19fc2cf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ import { load } from 'cheerio';
export const route: Route = {
path: '/mmda/tags/:tags?',
categories: ['picture'],
example: '/booru/mmda/tags/full_body+blue_eyes',
parameters: { tags: '标签,多个标签使用空格 ` ` 或者 `%20` 连接,如需根据作者查询则在 `user:` 后接上作者名,如:`user:xxxx`' },
example: '/booru/mmda/tags/full_body%20blue_eyes',
parameters: { tags: '标签,多个标签使用 `%20` 连接,如需根据作者查询则在 `user:` 后接上作者名,如:`user:xxxx`' },
features: {
requireConfig: false,
requirePuppeteer: false,