Includes BlogParser files in cmakelists

This commit is contained in:
Rosia E Evans 2023-09-16 15:33:14 +01:00
parent d19c822764
commit 65aefe46ce
31 changed files with 1569 additions and 34 deletions

View file

@ -5,8 +5,6 @@ int main()
{
BlogParser* parser = new BlogParser();
std::string in = "../../inputfile.md";
std::string out = "../../outputfile.html";
parser->parse(in, out);
parser->parse("../../inputfile.md", "../../outputfile.html");
}