Blog/Src/BlogParser.cpp
2023-09-15 13:00:49 +01:00

18 lines
252 B
C++

#include "BlogParser.h"
BlogParser::BlogParser()
{
}
std::string BlogParser::ParseText(std::string text)
{
std::string result;
std::string currentTag;
// for (char c : text)
// {
// if (c is first)
// }
return "";
}