Fix: Allow なでなで

This commit is contained in:
syuilo⭐️ 2016-12-30 12:27:50 +09:00
parent f844a47f1d
commit a469ba4000

View file

@ -34,7 +34,8 @@ module.exports = function(tokens, canBreak, escape) {
}).join(''); }).join('');
if (me && me.data && me.data.nya) { if (me && me.data && me.data.nya) {
text = text.replace(/な/g, 'にゃ'); text = text.replace(/な/g, 'にゃ')
.replace(/にゃでにゃで/g, 'なでなで');
} }
return text; return text;