deadshot465 / owoify-py

Turning your worst nightmare into a Python package. https://codepen.io/newbeetf2/pen/yLLaNPZ
MIT License
6 stars 1 forks source link

Adding "Nya" to strings with "a". (Also "~") #3

Open 034nop opened 1 year ago

034nop commented 1 year ago

Similar to the OwOFox extension at the webstore

JavaScript in the source code:

    v = v.replace(/n([aeiou])/g, 'ny$1');
    v = v.replace(/N([aeiou])/g, 'Ny$1');
    v = v.replace(/N([AEIOU])/g, 'NY$1');

I also think "~" should be added to the end of sentences depending on what word/character it ends on (up to you if you decide to add it.)

ツ Nya~~ ツ

034nop commented 1 year ago

(I don't really think nye, nyi, nyo, nyu really fit.)

deadshot465 commented 8 months ago

Sorry it has been some time since I was available to do some works/updates to my side projects.

The problem is the original owoify-js doesn't have such feature. Maybe we can add it as a selectable feature or just make another function 🤔

034nop commented 8 months ago

It's fine, you're only 10 months late 🤣 I agree that you could probably make this a selectable feature, maybe an argument that defaults to False?