LunaHook-mirror/LunaHost/GUI/Plugin/extensions/extranewlines.cpp

9 lines
187 B
C++
Raw Normal View History

2024-04-21 17:38:47 +08:00
#include "extension.h"
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
{
if (sentenceInfo["text number"] == 0) return false;
sentence += L"\n";
return true;
}