alright, i making misskey plugin to change your note to uwu lang
here:
/// @ 0.12.4
### {
name: "Uwuified",
version: "1.0.0",
author: "Misa",
description: "Change text to UwU~",
permissions: ["write:notes"]
}
Plugin:register_post_form_action("UwU", @(note, rewrite) {
let text = note.text
let text1 = text.replace("r", "w")
let text2 = text1.replace("l", "w")
let text3 = text2.replace("na", "nya")
let result = `{text3} uwu~`
Mk:dialog("Uwuified!", "UwU~", "success")
rewrite("text", result)
})how to use:1. goes to setting->plugin->install plugin -> paste the code and install
2. make a note
3. click plugin logo on note dialog and choose the plugin
4. enjoy
note: based on the docs, it is only run in client-side