gitextract_z999s_ga/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 01_visitor-bug-report-ja.yml │ │ ├── 02_visitor-bug-report-en.yml │ │ ├── 03_developer-bug-report.yml │ │ ├── 04_feature-request.yml │ │ └── config.yml │ └── workflows/ │ ├── deploy.yml │ └── on-misskey-release.yml ├── .gitignore ├── .npmrc ├── .nuxtignore ├── LICENSE ├── README.md ├── app/ │ ├── router.options.ts │ └── spa-loading-template-base.html ├── app.config.ts ├── app.vue ├── assets/ │ ├── css/ │ │ ├── bootstrap-forms.scss │ │ ├── global.css │ │ ├── mfm.scss │ │ └── nprogress.css │ ├── data/ │ │ ├── features.ts │ │ ├── forks.ts │ │ ├── locales.ts │ │ ├── nav.ts │ │ ├── old-hub-redirects.ts │ │ ├── team-members.ts │ │ └── toolsNav.ts │ └── js/ │ ├── mi/ │ │ ├── aid.ts │ │ ├── aidx.ts │ │ ├── clone.ts │ │ ├── collapsed.ts │ │ ├── gen-identicon.ts │ │ ├── io-emojis.ts │ │ ├── io-media-proxy.ts │ │ └── io-meta.ts │ ├── misc/ │ │ ├── get-issue-url.ts │ │ ├── index.ts │ │ └── uwu.ts │ ├── scroll-to/ │ │ └── index.ts │ ├── vFadeIn.ts │ └── vTextUnderline.ts ├── components/ │ ├── about-us/ │ │ └── TeamMember.vue │ ├── brand-assets/ │ │ └── ImgPreview.vue │ ├── charts/ │ │ └── CircGraph.vue │ ├── content/ │ │ ├── AiModeB.vue │ │ ├── ApiPermissions.vue │ │ ├── Badge.vue │ │ ├── Danger.vue │ │ ├── Fukidashi.vue │ │ ├── GDetails.vue │ │ ├── MfmPreview.vue │ │ ├── MiWebEmbed.vue │ │ ├── MkIndex.vue │ │ ├── ProseA.vue │ │ ├── ProseImg.vue │ │ ├── ProseTable.vue │ │ ├── Tip.vue │ │ ├── Warning.vue │ │ ├── X__Blog__2023-12-19-mac202319__Figure1.vue │ │ ├── X__Docs__mi-card__Calculator.vue │ │ └── X__Docs__mi-card__InteractiveView.vue │ ├── docs/ │ │ ├── AsideNav.vue │ │ ├── PrevNext.vue │ │ ├── ReadersNav.vue │ │ ├── SteppedGuide.vue │ │ └── TocLinks.vue │ ├── g/ │ │ ├── AiChan.vue │ │ ├── BsCopyButton.vue │ │ ├── Button.vue │ │ ├── Dots.vue │ │ ├── Footer.vue │ │ ├── Hero.vue │ │ ├── LargeLinks.vue │ │ ├── Links.vue │ │ ├── LocalNav.vue │ │ ├── Marquee.vue │ │ ├── MisskeyGateway.vue │ │ ├── Nav.vue │ │ ├── NoScript.server.vue │ │ ├── NuxtLink.vue │ │ └── SocialShare.vue │ ├── index/ │ │ ├── GetStarted.vue │ │ ├── Sponsors.vue │ │ ├── desktop.vue │ │ ├── hero/ │ │ │ ├── Bg.vue │ │ │ ├── Mi3d.vue │ │ │ ├── NodesAnim.vue │ │ │ ├── Particles.vue │ │ │ ├── calc.ts │ │ │ ├── ease.ts │ │ │ └── particles-worker.ts │ │ └── mobile.vue │ ├── misc/ │ │ └── AiSign.vue │ ├── mk/ │ │ ├── AnimBg.vue │ │ ├── CustomEmoji.vue │ │ ├── Google.vue │ │ ├── Loading.vue │ │ ├── Mention.vue │ │ ├── Mfm.ts │ │ ├── Sparkle.vue │ │ └── Time.vue │ ├── servers/ │ │ ├── Finder.vue │ │ ├── Item.vue │ │ └── StatsViewer.vue │ └── tools/ │ ├── AsideNavSection.vue │ └── mocks/ │ ├── MkNote.vue │ └── MkProf.vue ├── composables/ │ ├── useGAsyncData.ts │ ├── useGLocalPath.ts │ ├── useGSwitchLocalePath.ts │ └── useScrollSpy.ts ├── content/ │ ├── .README.md │ ├── blog/ │ │ ├── 2021-09-11-hello-to-misskey-hub.md │ │ ├── 2021-11-05-mac2021.md │ │ ├── 2021-12-01-inside-misskey-hub.md │ │ ├── 2022-02-11-inside-mfm.md │ │ ├── 2022-11-28-media-k-tai.md │ │ ├── 2023-02-08-contribute-to-earn.md │ │ ├── 2023-02-13-gihyo.md │ │ ├── 2023-02-13-media-k-tai.md │ │ ├── 2023-03-04-media-itmedia.md │ │ ├── 2023-03-22-gihyo.md │ │ ├── 2023-04-08-media-nikkei-linux.md │ │ ├── 2023-05-15-gihyo.md │ │ ├── 2023-06-14-gihyo.md │ │ ├── 2023-07-01-interview.md │ │ ├── 2023-07-10-interview.md │ │ ├── 2023-07-12-trademark.md │ │ ├── 2023-07-14-skeb.md │ │ ├── 2023-07-14-xserver.md │ │ ├── 2023-07-16-media-nikkei.md │ │ ├── 2023-07-18-shindanmaker.md │ │ ├── 2023-07-19-gihyo.md │ │ ├── 2023-08-08-misskeyhq.md │ │ ├── 2023-08-30-conoha.md │ │ ├── 2023-09-04-media-nlab.md │ │ ├── 2023-09-07-hatenablog.md │ │ ├── 2023-09-09-interview.md │ │ ├── 2023-09-11-gihyo.md │ │ ├── 2023-09-12-sakuravps.md │ │ ├── 2023-09-24-release.md │ │ ├── 2023-10-10-release.md │ │ ├── 2023-10-24-gihyo.md │ │ ├── 2023-10-27-xserver.md │ │ ├── 2023-11-05-mac2023.md │ │ ├── 2023-11-05-release.md │ │ ├── 2023-11-14-gihyo.md │ │ ├── 2023-11-17-release.md │ │ ├── 2023-12-01-2023recap.md │ │ ├── 2023-12-03-inside-misskey-hub-next.md │ │ ├── 2023-12-12-gihyo.md │ │ ├── 2023-12-19-mac202319.md │ │ ├── 2023-12-23-release.md │ │ ├── 2024-02-16-gihyo.md │ │ ├── 2024-02-17-release.md │ │ ├── 2024-02-27-wp-cocoon-share.md │ │ ├── 2024-03-01-release.md │ │ ├── 2024-03-26-gihyo.md │ │ ├── 2024-04-11-gihyo.md │ │ ├── 2024-05-31-release.md │ │ ├── 2024-06-04-pepabo.md │ │ ├── 2024-06-11-historical-materials.md │ │ ├── 2024-06-11-mi-card.md │ │ ├── 2024-06-17-gihyo.md │ │ ├── 2024-07-19-gihyo.md │ │ ├── 2024-07-31-release.md │ │ ├── 2024-08-18-release.md │ │ ├── 2024-08-19-gihyo.md │ │ ├── 2024-09-20-gihyo.md │ │ ├── 2024-09-29-release.md │ │ ├── 2024-10-09-release.md │ │ ├── 2024-10-15-release.md │ │ ├── 2024-10-28-10kstars.md │ │ ├── 2024-11-10-mac2024.md │ │ ├── 2024-11-13-gihyo.md │ │ ├── 2024-11-22-release.md │ │ ├── 2024-12-20-gihyo.md │ │ ├── 2024-12-31-2024recap.md │ │ ├── 2025-01-28-release.md │ │ ├── 2025-02-05-release.md │ │ ├── 2025-02-27-release.md │ │ ├── 2025-03-06-release.md │ │ ├── 2025-03-09-release.md │ │ ├── 2025-03-17-xfolio.md │ │ ├── 2025-04-09-release.md │ │ ├── 2025-04-22-gihyo.md │ │ ├── 2025-04-30-release.md │ │ ├── 2025-05-07-release.md │ │ ├── 2025-05-31-release.md │ │ ├── 2025-06-02-release.md │ │ ├── 2025-06-16-release.md │ │ ├── 2025-07-18-release.md │ │ ├── 2025-08-31-release.md │ │ ├── 2025-09-08-release.md │ │ ├── 2025-10-06-gihyo.md │ │ ├── 2025-10-08-release.md │ │ ├── 2025-10-24-release.md │ │ ├── 2025-10-27-release.md │ │ ├── 2025-11-01-mac2025.md │ │ ├── 2025-11-16-release.md │ │ ├── 2025-11-28-release.md │ │ ├── 2025-12-02-announce.md │ │ ├── 2025-12-06-release.md │ │ ├── 2025-12-14-release.md │ │ ├── 2025-12-15-gihyo.md │ │ ├── 2025-12-20-2025recap.md │ │ ├── 2025-12-22-release.md │ │ ├── 2026-01-26-gihyo.md │ │ ├── 2026-03-05-release.md │ │ ├── 2026-03-09-release.md │ │ ├── 2026-03-10-gihyo.md │ │ ├── 2026-03-31-release.md │ │ ├── 2026-05-02-release.md │ │ └── 2026-05-06-release.md │ ├── ca/ │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── cn/ │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── de/ │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── en/ │ │ ├── .docs-legacy/ │ │ │ ├── admin/ │ │ │ │ ├── cdn.md │ │ │ │ ├── default-reaction.md │ │ │ │ ├── emoji.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ └── troubleshooting.md │ │ │ ├── api/ │ │ │ │ ├── app.md │ │ │ │ ├── common.json5 │ │ │ │ ├── index.md │ │ │ │ └── streaming/ │ │ │ │ ├── channel/ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ └── main.md │ │ │ │ ├── index.md │ │ │ │ └── note-capture-events.md │ │ │ ├── donate.md │ │ │ ├── faq.md │ │ │ ├── features/ │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── drive.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── index.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── reaction.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── getting-started.md │ │ │ ├── glossary.md │ │ │ ├── install/ │ │ │ │ ├── bash.md │ │ │ │ ├── docker.md │ │ │ │ ├── kubernetes.md │ │ │ │ └── manual.md │ │ │ ├── install.md │ │ │ ├── misskey-hub.md │ │ │ ├── misskey.md │ │ │ ├── releases.md │ │ │ ├── tips/ │ │ │ │ └── disable-timelines.md │ │ │ └── troubleshooting.md │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── es/ │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── fr/ │ │ ├── .docs-legacy/ │ │ │ ├── admin/ │ │ │ │ ├── cdn.md │ │ │ │ ├── default-reaction.md │ │ │ │ ├── emoji.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ └── troubleshooting.md │ │ │ ├── api/ │ │ │ │ ├── app.md │ │ │ │ ├── common.json5 │ │ │ │ ├── index.md │ │ │ │ └── streaming/ │ │ │ │ ├── channel/ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ └── main.md │ │ │ │ ├── index.md │ │ │ │ └── note-capture-events.md │ │ │ ├── donate.md │ │ │ ├── faq.md │ │ │ ├── features/ │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── drive.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── index.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── reaction.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── getting-started.md │ │ │ ├── glossary.md │ │ │ ├── install/ │ │ │ │ ├── bash.md │ │ │ │ ├── docker.md │ │ │ │ ├── kubernetes.md │ │ │ │ └── manual.md │ │ │ ├── install.md │ │ │ ├── misskey-hub.md │ │ │ ├── misskey.md │ │ │ ├── releases.md │ │ │ ├── tips/ │ │ │ │ └── disable-timelines.md │ │ │ └── troubleshooting.md │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── id/ │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── it/ │ │ ├── .docs-legacy/ │ │ │ ├── admin/ │ │ │ │ ├── cdn.md │ │ │ │ ├── default-reaction.md │ │ │ │ ├── emoji.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ └── troubleshooting.md │ │ │ ├── api/ │ │ │ │ ├── app.md │ │ │ │ ├── common.json5 │ │ │ │ ├── index.md │ │ │ │ └── streaming/ │ │ │ │ ├── channel/ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ └── main.md │ │ │ │ ├── index.md │ │ │ │ └── note-capture-events.md │ │ │ ├── faq.md │ │ │ ├── features/ │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── drive.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── index.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── reaction.md │ │ │ │ ├── share-form.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── getting-started.md │ │ │ ├── glossary.md │ │ │ ├── install/ │ │ │ │ ├── docker.md │ │ │ │ ├── manual.md │ │ │ │ └── ubuntu-manual.md │ │ │ ├── install.md │ │ │ ├── misskey-hub.md │ │ │ ├── misskey.md │ │ │ ├── releases.md │ │ │ ├── tips/ │ │ │ │ └── disable-timelines.md │ │ │ └── troubleshooting.md │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── ja/ │ │ ├── .docs-legacy/ │ │ │ └── api/ │ │ │ ├── common.json5 │ │ │ ├── endpoints/ │ │ │ │ ├── admin/ │ │ │ │ │ ├── abuse-user-reports.json5 │ │ │ │ │ ├── accounts/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ └── delete.json5 │ │ │ │ │ ├── ad/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ ├── list.json5 │ │ │ │ │ │ └── update.json5 │ │ │ │ │ ├── announcements/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ ├── list.json5 │ │ │ │ │ │ └── update.json5 │ │ │ │ │ ├── delete-account.json5 │ │ │ │ │ ├── delete-all-files-of-a-user.json5 │ │ │ │ │ ├── drive/ │ │ │ │ │ │ ├── clean-remote-files.json5 │ │ │ │ │ │ ├── cleanup.json5 │ │ │ │ │ │ ├── files.json5 │ │ │ │ │ │ └── show-file.json5 │ │ │ │ │ ├── drive-capacity-override.json5 │ │ │ │ │ ├── emoji/ │ │ │ │ │ │ ├── add-aliases-bulk.json5 │ │ │ │ │ │ ├── add.json5 │ │ │ │ │ │ ├── copy.json5 │ │ │ │ │ │ ├── delete-bulk.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ ├── list-remote.json5 │ │ │ │ │ │ ├── list.json5 │ │ │ │ │ │ ├── remove-aliases-bulk.json5 │ │ │ │ │ │ ├── set-aliases-bulk.json5 │ │ │ │ │ │ ├── set-category-bulk.json5 │ │ │ │ │ │ └── update.json5 │ │ │ │ │ ├── federation/ │ │ │ │ │ │ ├── delete-all-files.json5 │ │ │ │ │ │ ├── refresh-remote-instance-metadata.json5 │ │ │ │ │ │ ├── remove-all-following.json5 │ │ │ │ │ │ └── update-instance.json5 │ │ │ │ │ ├── get-index-stats.json5 │ │ │ │ │ ├── get-table-stats.json5 │ │ │ │ │ ├── get-user-ips.json5 │ │ │ │ │ ├── invite.json5 │ │ │ │ │ ├── meta.json5 │ │ │ │ │ ├── moderators/ │ │ │ │ │ │ ├── add.json5 │ │ │ │ │ │ └── remove.json5 │ │ │ │ │ ├── promo/ │ │ │ │ │ │ └── create.json5 │ │ │ │ │ ├── queue/ │ │ │ │ │ │ ├── clear.json5 │ │ │ │ │ │ ├── deliver-delayed.json5 │ │ │ │ │ │ ├── inbox-delayed.json5 │ │ │ │ │ │ └── stats.json5 │ │ │ │ │ ├── relays/ │ │ │ │ │ │ ├── add.json5 │ │ │ │ │ │ ├── list.json5 │ │ │ │ │ │ └── remove.json5 │ │ │ │ │ ├── reset-password.json5 │ │ │ │ │ ├── resolve-abuse-user-report.json5 │ │ │ │ │ ├── send-email.json5 │ │ │ │ │ ├── server-info.json5 │ │ │ │ │ ├── show-moderation-logs.json5 │ │ │ │ │ ├── show-user.json5 │ │ │ │ │ ├── show-users.json5 │ │ │ │ │ ├── silence-user.json5 │ │ │ │ │ ├── suspend-user.json5 │ │ │ │ │ ├── unsilence-user.json5 │ │ │ │ │ ├── unsuspend-user.json5 │ │ │ │ │ ├── update-meta.json5 │ │ │ │ │ ├── update-user-note.json5 │ │ │ │ │ └── vacuum.json5 │ │ │ │ ├── announcements.json5 │ │ │ │ ├── antennas/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ ├── list.json5 │ │ │ │ │ ├── notes.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ └── update.json5 │ │ │ │ ├── ap/ │ │ │ │ │ ├── get.json5 │ │ │ │ │ └── show.json5 │ │ │ │ ├── app/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ └── show.json5 │ │ │ │ ├── auth/ │ │ │ │ │ └── session/ │ │ │ │ │ ├── generate.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ └── userkey.json5 │ │ │ │ ├── blocking/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ └── list.json5 │ │ │ │ ├── channels/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── featured.json5 │ │ │ │ │ ├── follow.json5 │ │ │ │ │ ├── followed.json5 │ │ │ │ │ ├── owned.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ ├── timeline.json5 │ │ │ │ │ ├── unfollow.json5 │ │ │ │ │ └── update.json5 │ │ │ │ ├── charts/ │ │ │ │ │ ├── active-users.json5 │ │ │ │ │ ├── ap-request.json5 │ │ │ │ │ ├── drive.json5 │ │ │ │ │ ├── federation.json5 │ │ │ │ │ ├── hashtag.json5 │ │ │ │ │ ├── instance.json5 │ │ │ │ │ ├── notes.json5 │ │ │ │ │ ├── user/ │ │ │ │ │ │ ├── drive.json5 │ │ │ │ │ │ ├── following.json5 │ │ │ │ │ │ ├── notes.json5 │ │ │ │ │ │ └── reactions.json5 │ │ │ │ │ └── users.json5 │ │ │ │ ├── clips/ │ │ │ │ │ ├── add-note.json5 │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ ├── list.json5 │ │ │ │ │ ├── notes.json5 │ │ │ │ │ ├── remove-note.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ └── update.json5 │ │ │ │ ├── drive/ │ │ │ │ │ ├── files/ │ │ │ │ │ │ ├── attached-notes.json5 │ │ │ │ │ │ ├── check-existence.json5 │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ ├── find-by-hash.json5 │ │ │ │ │ │ ├── find.json5 │ │ │ │ │ │ ├── show.json5 │ │ │ │ │ │ ├── update.json5 │ │ │ │ │ │ └── upload-from-url.json5 │ │ │ │ │ ├── files.json5 │ │ │ │ │ ├── folders/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ ├── find.json5 │ │ │ │ │ │ ├── show.json5 │ │ │ │ │ │ └── update.json5 │ │ │ │ │ ├── folders.json5 │ │ │ │ │ └── stream.json5 │ │ │ │ ├── drive.json5 │ │ │ │ ├── email-address/ │ │ │ │ │ └── available.json5 │ │ │ │ ├── endpoint.json5 │ │ │ │ ├── endpoints.json5 │ │ │ │ ├── federation/ │ │ │ │ │ ├── followers.json5 │ │ │ │ │ ├── following.json5 │ │ │ │ │ ├── instances.json5 │ │ │ │ │ ├── show-instance.json5 │ │ │ │ │ ├── stats.json5 │ │ │ │ │ ├── update-remote-user.json5 │ │ │ │ │ └── users.json5 │ │ │ │ ├── fetch-rss.json5 │ │ │ │ ├── following/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ ├── invalidate.json5 │ │ │ │ │ └── requests/ │ │ │ │ │ ├── accept.json5 │ │ │ │ │ ├── cancel.json5 │ │ │ │ │ ├── list.json5 │ │ │ │ │ └── reject.json5 │ │ │ │ ├── gallery/ │ │ │ │ │ ├── featured.json5 │ │ │ │ │ ├── popular.json5 │ │ │ │ │ ├── posts/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ ├── like.json5 │ │ │ │ │ │ ├── show.json5 │ │ │ │ │ │ ├── unlike.json5 │ │ │ │ │ │ └── update.json5 │ │ │ │ │ └── posts.json5 │ │ │ │ ├── get-online-users-count.json5 │ │ │ │ ├── hashtags/ │ │ │ │ │ ├── list.json5 │ │ │ │ │ ├── search.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ ├── trend.json5 │ │ │ │ │ └── users.json5 │ │ │ │ ├── i/ │ │ │ │ │ ├── favorites.json5 │ │ │ │ │ ├── gallery/ │ │ │ │ │ │ ├── likes.json5 │ │ │ │ │ │ └── posts.json5 │ │ │ │ │ ├── get-word-muted-notes-count.json5 │ │ │ │ │ ├── notifications.json5 │ │ │ │ │ ├── page-likes.json5 │ │ │ │ │ ├── pages.json5 │ │ │ │ │ ├── pin.json5 │ │ │ │ │ ├── read-all-messaging-messages.json5 │ │ │ │ │ ├── read-all-unread-notes.json5 │ │ │ │ │ ├── read-announcement.json5 │ │ │ │ │ ├── unpin.json5 │ │ │ │ │ ├── update.json5 │ │ │ │ │ └── webhooks/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ ├── list.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ └── update.json5 │ │ │ │ ├── i.json5 │ │ │ │ ├── messaging/ │ │ │ │ │ ├── history.json5 │ │ │ │ │ ├── messages/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ └── read.json5 │ │ │ │ │ └── messages.json5 │ │ │ │ ├── meta.json5 │ │ │ │ ├── mute/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ └── list.json5 │ │ │ │ ├── my/ │ │ │ │ │ └── apps.json5 │ │ │ │ ├── notes/ │ │ │ │ │ ├── children.json5 │ │ │ │ │ ├── clips.json5 │ │ │ │ │ ├── conversation.json5 │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ ├── favorites/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ └── delete.json5 │ │ │ │ │ ├── featured.json5 │ │ │ │ │ ├── global-timeline.json5 │ │ │ │ │ ├── hybrid-timeline.json5 │ │ │ │ │ ├── local-timeline.json5 │ │ │ │ │ ├── mentions.json5 │ │ │ │ │ ├── polls/ │ │ │ │ │ │ ├── recommendation.json5 │ │ │ │ │ │ └── vote.json5 │ │ │ │ │ ├── reactions/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ └── delete.json5 │ │ │ │ │ ├── reactions.json5 │ │ │ │ │ ├── renotes.json5 │ │ │ │ │ ├── replies.json5 │ │ │ │ │ ├── search-by-tag.json5 │ │ │ │ │ ├── search.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ ├── state.json5 │ │ │ │ │ ├── thread-muting/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ └── delete.json5 │ │ │ │ │ ├── timeline.json5 │ │ │ │ │ ├── translate.json5 │ │ │ │ │ ├── unrenote.json5 │ │ │ │ │ ├── user-list-timeline.json5 │ │ │ │ │ └── watching/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ └── delete.json5 │ │ │ │ ├── notes.json5 │ │ │ │ ├── notifications/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── mark-all-as-read.json5 │ │ │ │ │ └── read.json5 │ │ │ │ ├── pages/ │ │ │ │ │ ├── create.json5 │ │ │ │ │ ├── delete.json5 │ │ │ │ │ ├── featured.json5 │ │ │ │ │ ├── like.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ ├── unlike.json5 │ │ │ │ │ └── update.json5 │ │ │ │ ├── ping.json5 │ │ │ │ ├── pinned-users.json5 │ │ │ │ ├── promo/ │ │ │ │ │ └── read.json5 │ │ │ │ ├── request-reset-password.json5 │ │ │ │ ├── reset-db.json5 │ │ │ │ ├── reset-password.json5 │ │ │ │ ├── server-info.json5 │ │ │ │ ├── stats.json5 │ │ │ │ ├── sw/ │ │ │ │ │ ├── register.json5 │ │ │ │ │ └── unregister.json5 │ │ │ │ ├── test.json5 │ │ │ │ ├── username/ │ │ │ │ │ └── available.json5 │ │ │ │ ├── users/ │ │ │ │ │ ├── clips.json5 │ │ │ │ │ ├── followers.json5 │ │ │ │ │ ├── following.json5 │ │ │ │ │ ├── gallery/ │ │ │ │ │ │ └── posts.json5 │ │ │ │ │ ├── get-frequently-replied-users.json5 │ │ │ │ │ ├── lists/ │ │ │ │ │ │ ├── create.json5 │ │ │ │ │ │ ├── delete.json5 │ │ │ │ │ │ ├── list.json5 │ │ │ │ │ │ ├── pull.json5 │ │ │ │ │ │ ├── push.json5 │ │ │ │ │ │ ├── show.json5 │ │ │ │ │ │ └── update.json5 │ │ │ │ │ ├── notes.json5 │ │ │ │ │ ├── pages.json5 │ │ │ │ │ ├── reactions.json5 │ │ │ │ │ ├── recommendation.json5 │ │ │ │ │ ├── relation.json5 │ │ │ │ │ ├── report-abuse.json5 │ │ │ │ │ ├── search-by-username-and-host.json5 │ │ │ │ │ ├── search.json5 │ │ │ │ │ ├── show.json5 │ │ │ │ │ └── stats.json5 │ │ │ │ └── users.json5 │ │ │ └── index.md │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── ko/ │ │ ├── .docs-legacy/ │ │ │ ├── admin/ │ │ │ │ ├── cdn.md │ │ │ │ ├── default-reaction.md │ │ │ │ ├── emoji.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ └── troubleshooting.md │ │ │ ├── advanced/ │ │ │ │ ├── aiscript.md │ │ │ │ ├── create-plugin.md │ │ │ │ ├── develop-bot.md │ │ │ │ └── plugin-api-reference.md │ │ │ ├── api/ │ │ │ │ ├── app.md │ │ │ │ ├── common.json5 │ │ │ │ ├── index.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ └── streaming/ │ │ │ │ ├── channel/ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ └── main.md │ │ │ │ ├── index.md │ │ │ │ └── note-capture-events.md │ │ │ ├── apps.md │ │ │ ├── donate.md │ │ │ ├── faq.md │ │ │ ├── features/ │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── drive.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── index.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── play.md │ │ │ │ ├── plugin.md │ │ │ │ ├── reaction.md │ │ │ │ ├── roles.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── getting-started.md │ │ │ ├── glossary.md │ │ │ ├── install/ │ │ │ │ ├── bash-v140.md │ │ │ │ ├── bash-v165.md │ │ │ │ ├── bash.md │ │ │ │ ├── docker.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── manual.md │ │ │ │ └── ubuntu-manual.md │ │ │ ├── install.md │ │ │ ├── misskey-hub.md │ │ │ ├── misskey.md │ │ │ ├── releases.md │ │ │ ├── tips/ │ │ │ │ └── disable-timelines.md │ │ │ └── troubleshooting.md │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── ns.md │ ├── pl/ │ │ ├── .docs-legacy/ │ │ │ ├── admin/ │ │ │ │ ├── cdn.md │ │ │ │ ├── default-reaction.md │ │ │ │ ├── emoji.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ └── troubleshooting.md │ │ │ ├── api/ │ │ │ │ ├── app.md │ │ │ │ ├── common.json5 │ │ │ │ ├── index.md │ │ │ │ └── streaming/ │ │ │ │ ├── channel/ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ └── main.md │ │ │ │ ├── index.md │ │ │ │ └── note-capture-events.md │ │ │ ├── donate.md │ │ │ ├── faq.md │ │ │ ├── features/ │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── drive.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── index.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── reaction.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── getting-started.md │ │ │ ├── glossary.md │ │ │ ├── install/ │ │ │ │ ├── bash.md │ │ │ │ ├── docker.md │ │ │ │ ├── kubernetes.md │ │ │ │ └── manual.md │ │ │ ├── install.md │ │ │ ├── misskey-hub.md │ │ │ ├── misskey.md │ │ │ ├── releases.md │ │ │ ├── tips/ │ │ │ │ └── disable-timelines.md │ │ │ └── troubleshooting.md │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ ├── th/ │ │ ├── contact-faq/ │ │ │ ├── 0.cannot-create-account.md │ │ │ ├── 1.cannot-login-to-the-account.md │ │ │ ├── 2.delete-account.md │ │ │ ├── 3.server-wide-content-mod.md │ │ │ ├── 4.copyright-infringement.md │ │ │ ├── 5.client-not-working.md │ │ │ └── 6.mention-spam.md │ │ └── docs/ │ │ ├── 1.about-misskey.md │ │ ├── 2.for-users/ │ │ │ ├── 1.index.md │ │ │ ├── 2.onboarding/ │ │ │ │ ├── 0.index.md │ │ │ │ ├── 1.warning.md │ │ │ │ ├── 2.get-started.md │ │ │ │ ├── 3.join-server.md │ │ │ │ └── 4.things-to-know.md │ │ │ ├── 3.features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── ads.md │ │ │ │ ├── antenna.md │ │ │ │ ├── charts.md │ │ │ │ ├── clip.md │ │ │ │ ├── custom-emoji.md │ │ │ │ ├── deck.md │ │ │ │ ├── dev-mode.md │ │ │ │ ├── drive.md │ │ │ │ ├── embed.md │ │ │ │ ├── favorite.md │ │ │ │ ├── follow.md │ │ │ │ ├── hashtag.md │ │ │ │ ├── mention.md │ │ │ │ ├── mfm.md │ │ │ │ ├── mute-and-block.md │ │ │ │ ├── note.md │ │ │ │ ├── online-status.md │ │ │ │ ├── pages.md │ │ │ │ ├── plugin.md │ │ │ │ ├── poll.md │ │ │ │ ├── reaction.md │ │ │ │ ├── safemode.md │ │ │ │ ├── share-form.md │ │ │ │ ├── silence.md │ │ │ │ ├── theme.md │ │ │ │ ├── thread-mute.md │ │ │ │ ├── timeline.md │ │ │ │ ├── webhook.md │ │ │ │ ├── widgets.md │ │ │ │ └── word-mute.md │ │ │ ├── 4.resources/ │ │ │ │ ├── 1.troubleshooting.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── apps.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── misskey-hub.md │ │ │ │ └── self-xss.md │ │ │ ├── 5.stepped-guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── _dir.yml │ │ │ │ ├── how-to-delete-account.yml │ │ │ │ ├── how-to-enable-2fa.yml │ │ │ │ └── how-to-use-pwa.yml │ │ │ └── _dir.yml │ │ ├── 3.for-admin/ │ │ │ ├── _dir.yml │ │ │ ├── features/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── abuse-report.md │ │ │ │ ├── announcement.md │ │ │ │ ├── cli.md │ │ │ │ ├── federation.md │ │ │ │ ├── ftt.md │ │ │ │ ├── managing-emojis.md │ │ │ │ ├── role.md │ │ │ │ └── search.md │ │ │ ├── install/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── guides/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── 2.service.md │ │ │ │ │ ├── bash.md │ │ │ │ │ ├── docker.md │ │ │ │ │ ├── kubernetes.md │ │ │ │ │ ├── manual.md │ │ │ │ │ └── ubuntu-manual.md │ │ │ │ └── resources/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── cdn.md │ │ │ │ ├── forking.md │ │ │ │ ├── nginx.md │ │ │ │ ├── push-docker-hub.md │ │ │ │ ├── scale-out.md │ │ │ │ └── troubleshooting.md │ │ │ └── moderation-tips/ │ │ │ ├── _dir.yml │ │ │ └── disable-timelines.md │ │ ├── 4.for-developers/ │ │ │ ├── _dir.yml │ │ │ ├── aiscript.md │ │ │ ├── api/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── endpoints.md │ │ │ │ ├── libraries.md │ │ │ │ ├── permission.md │ │ │ │ ├── streaming/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── channel/ │ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ │ └── main.md │ │ │ │ │ └── note-capture-events.md │ │ │ │ └── token/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.miauth.md │ │ │ │ ├── 3.oauth.md │ │ │ │ └── 50.app.md │ │ │ ├── bot/ │ │ │ │ └── 1.index.md │ │ │ ├── plugin/ │ │ │ │ ├── _dir.yml │ │ │ │ ├── create-play.md │ │ │ │ ├── create-plugin.md │ │ │ │ └── plugin-api-reference.md │ │ │ └── publish-on-your-website.md │ │ ├── 5.releases.md │ │ ├── 6.donate.md │ │ ├── 7.become-a-sponsor.md │ │ ├── 8.mi-card.md │ │ └── 9.misskey-and-misskey-servers.md │ └── tw/ │ ├── contact-faq/ │ │ ├── 0.cannot-create-account.md │ │ ├── 1.cannot-login-to-the-account.md │ │ ├── 2.delete-account.md │ │ ├── 3.server-wide-content-mod.md │ │ ├── 4.copyright-infringement.md │ │ ├── 5.client-not-working.md │ │ └── 6.mention-spam.md │ └── docs/ │ ├── 1.about-misskey.md │ ├── 2.for-users/ │ │ ├── 1.index.md │ │ ├── 2.onboarding/ │ │ │ ├── 0.index.md │ │ │ ├── 1.warning.md │ │ │ ├── 2.get-started.md │ │ │ ├── 3.join-server.md │ │ │ └── 4.things-to-know.md │ │ ├── 3.features/ │ │ │ ├── 1.index.md │ │ │ ├── ads.md │ │ │ ├── antenna.md │ │ │ ├── charts.md │ │ │ ├── clip.md │ │ │ ├── custom-emoji.md │ │ │ ├── deck.md │ │ │ ├── dev-mode.md │ │ │ ├── drive.md │ │ │ ├── embed.md │ │ │ ├── favorite.md │ │ │ ├── follow.md │ │ │ ├── hashtag.md │ │ │ ├── mention.md │ │ │ ├── mfm.md │ │ │ ├── mute-and-block.md │ │ │ ├── note.md │ │ │ ├── online-status.md │ │ │ ├── pages.md │ │ │ ├── plugin.md │ │ │ ├── poll.md │ │ │ ├── reaction.md │ │ │ ├── safemode.md │ │ │ ├── share-form.md │ │ │ ├── silence.md │ │ │ ├── theme.md │ │ │ ├── thread-mute.md │ │ │ ├── timeline.md │ │ │ ├── webhook.md │ │ │ ├── widgets.md │ │ │ └── word-mute.md │ │ ├── 4.resources/ │ │ │ ├── 1.troubleshooting.md │ │ │ ├── _dir.yml │ │ │ ├── apps.md │ │ │ ├── faq.md │ │ │ ├── glossary.md │ │ │ ├── misskey-hub.md │ │ │ └── self-xss.md │ │ ├── 5.stepped-guides/ │ │ │ ├── 1.index.md │ │ │ ├── _dir.yml │ │ │ ├── how-to-delete-account.yml │ │ │ ├── how-to-enable-2fa.yml │ │ │ └── how-to-use-pwa.yml │ │ └── _dir.yml │ ├── 3.for-admin/ │ │ ├── _dir.yml │ │ ├── features/ │ │ │ ├── 1.index.md │ │ │ ├── abuse-report.md │ │ │ ├── announcement.md │ │ │ ├── cli.md │ │ │ ├── federation.md │ │ │ ├── ftt.md │ │ │ ├── managing-emojis.md │ │ │ ├── role.md │ │ │ └── search.md │ │ ├── install/ │ │ │ ├── _dir.yml │ │ │ ├── guides/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── 2.service.md │ │ │ │ ├── bash.md │ │ │ │ ├── docker.md │ │ │ │ ├── kubernetes.md │ │ │ │ ├── manual.md │ │ │ │ └── ubuntu-manual.md │ │ │ └── resources/ │ │ │ ├── _dir.yml │ │ │ ├── cdn.md │ │ │ ├── forking.md │ │ │ ├── nginx.md │ │ │ ├── push-docker-hub.md │ │ │ ├── scale-out.md │ │ │ └── troubleshooting.md │ │ └── moderation-tips/ │ │ ├── _dir.yml │ │ └── disable-timelines.md │ ├── 4.for-developers/ │ │ ├── _dir.yml │ │ ├── aiscript.md │ │ ├── api/ │ │ │ ├── 1.index.md │ │ │ ├── endpoints.md │ │ │ ├── libraries.md │ │ │ ├── permission.md │ │ │ ├── streaming/ │ │ │ │ ├── 1.index.md │ │ │ │ ├── channel/ │ │ │ │ │ ├── 1.index.md │ │ │ │ │ ├── global-timeline.md │ │ │ │ │ ├── home-timeline.md │ │ │ │ │ ├── hybrid-timeline.md │ │ │ │ │ ├── local-timeline.md │ │ │ │ │ └── main.md │ │ │ │ └── note-capture-events.md │ │ │ └── token/ │ │ │ ├── 1.index.md │ │ │ ├── 2.miauth.md │ │ │ ├── 3.oauth.md │ │ │ └── 50.app.md │ │ ├── bot/ │ │ │ └── 1.index.md │ │ ├── plugin/ │ │ │ ├── _dir.yml │ │ │ ├── create-play.md │ │ │ ├── create-plugin.md │ │ │ └── plugin-api-reference.md │ │ └── publish-on-your-website.md │ ├── 5.releases.md │ ├── 6.donate.md │ ├── 7.become-a-sponsor.md │ ├── 8.mi-card.md │ └── 9.misskey-and-misskey-servers.md ├── crowdin.yml ├── error.vue ├── i18n/ │ └── i18n.config.ts ├── layouts/ │ ├── blank.vue │ ├── default.vue │ ├── docs.vue │ ├── landing.vue │ ├── slim.vue │ └── tools.vue ├── locales/ │ ├── README.md │ ├── ca-ES.yml │ ├── de-DE.yml │ ├── en-US.yml │ ├── es-ES.yml │ ├── fr-FR.yml │ ├── id-ID.yml │ ├── it-IT.yml │ ├── ja-JP.yml │ ├── ja-KS.yml │ ├── ko-KR.yml │ ├── pl-PL.yml │ ├── th-TH.yml │ ├── zh-CN.yml │ └── zh-TW.yml ├── mdc.config.ts ├── nuxt.config.ts ├── package.json ├── pages/ │ ├── about-us/ │ │ ├── history.vue │ │ ├── index.vue │ │ └── team.vue │ ├── blog/ │ │ ├── [slug].vue │ │ └── index.vue │ ├── brand-assets.vue │ ├── contact.vue │ ├── docs/ │ │ ├── [...slug].vue │ │ └── index.vue │ ├── index.vue │ ├── learn-more.vue │ ├── mi-web.client.vue │ ├── ns.vue │ ├── servers/ │ │ ├── index.vue │ │ └── stats.vue │ ├── share.client.vue │ ├── test.vue │ └── tools/ │ ├── aid-converter.vue │ ├── avatar-decoration-preview.vue │ ├── custom-emoji-preview.vue │ ├── hub-servers-preview.vue │ ├── identicon-generator.vue │ ├── index.vue │ ├── mfm-playground.vue │ ├── share-link-generator.vue │ └── tools-template-ignore.vue ├── public/ │ ├── _headers │ ├── _redirects_template │ ├── fonts/ │ │ ├── GenJyuuGothicX-Bold/ │ │ │ └── GenJyuuGothicX-Bold.css │ │ ├── GenJyuuGothicX-P-Bold/ │ │ │ └── GenJyuuGothicX-P-Bold.css │ │ ├── GenJyuuGothicX-P-Regular/ │ │ │ └── GenJyuuGothicX-P-Regular.css │ │ ├── GenJyuuGothicX-Regular/ │ │ │ └── GenJyuuGothicX-Regular.css │ │ ├── LICENSE │ │ └── fonts.css │ ├── gltf/ │ │ ├── mi.glb │ │ └── micard.glb │ ├── hdr/ │ │ └── micard.hdr │ ├── header-mask.afdesign │ ├── img/ │ │ ├── docs/ │ │ │ └── fukidashi/ │ │ │ └── README.md │ │ ├── sponsors/ │ │ │ └── LICENSE │ │ └── uwu/ │ │ └── LICENSE │ └── section-mask.afdesign ├── scripts/ │ ├── changelog-auto-updater/ │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── fetch-crowdin.ts │ ├── gen-locales.ts │ ├── gen-old-hub-redirects.ts │ ├── gen-spa-loading-template.ts │ ├── get-old-hub-redirects.ts │ ├── get-static-endpoints.ts │ ├── markdown-fixer/ │ │ ├── index.js │ │ └── package.json │ └── vercel-branch-deploy-config.sh ├── server/ │ ├── plugins/ │ │ ├── appendComment.ts │ │ └── i18nRedirector.ts │ └── tsconfig.json ├── tsconfig.json ├── types/ │ ├── content.ts │ ├── instances-info.ts │ ├── misc.d.ts │ ├── others.ts │ └── router.d.ts ├── uno.config.ts └── vercel.json