ParserMarkdown: Begin new markdown parser

This commit is contained in:
Albert S. 2021-04-17 12:14:21 +02:00
parent ab9e5fb0bd
commit ea7476a882
2 changed files with 42 additions and 0 deletions

26
parsermarkdown.cpp Normal file
View File

@ -0,0 +1,26 @@
#include "parsermarkdown.h"
ParserMarkdown::ParserMarkdown()
{
}
std::vector<Headline> ParserMarkdown::extractHeadlines(std::string content) const
{
std::vector<Headline> result;
utils::regex_callback_extractor(std::regex(R"((#{1,6}) (.*))"), content, [&](std::smatch &smatch) {
Headline h;
h.level = smatch.str(1).length();
h.title = smatch.str(2);
result.push_back(h);
});
return result;
}
std::string ParserMarkdown::parse(const PageDao &pagedao, UrlProvider &provider, std::string content) const
{
std::shared_ptr<maddy::ParserConfig> config = std::make_shared<maddy::ParserConfig>();
auto maddy = std::make_shared<maddy::Parser>(config);
std::stringstream s { content };
return maddy->Parse(s);
}

16
parsermarkdown.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef PARSER_MARKDOWN_H
#define PARSER_MARKDOWN_H
#include "parser.h"
#include "maddy/parser.h"
class ParserMarkdown : public Parser
{
public:
ParserMarkdown();
public:
std::vector<Headline> extractHeadlines(std::string content) const;
std::string parse(const PageDao &pagedao, UrlProvider &provider, std::string content) const;
};
#endif // PARSER_MARKDOWN_H