Blog/Src/BlogParser.cpp

19 lines
252 B
C++
Raw Normal View History

#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 "";
}