2021-04-17 12:14:21 +02:00
|
|
|
#ifndef PARSER_MARKDOWN_H
|
|
|
|
#define PARSER_MARKDOWN_H
|
|
|
|
|
2021-04-25 11:39:38 +02:00
|
|
|
#include "parserlegacy.h"
|
2021-04-17 12:14:21 +02:00
|
|
|
#include "maddy/parser.h"
|
2021-04-25 11:39:38 +02:00
|
|
|
class ParserMarkdown : public ParserLegacy
|
2021-04-17 12:14:21 +02:00
|
|
|
{
|
2021-04-24 12:10:57 +02:00
|
|
|
private:
|
|
|
|
std::string processLink(const PageDao &pageDao, UrlProvider &urlProvider, std::smatch &match) const;
|
2021-04-17 12:14:21 +02:00
|
|
|
|
|
|
|
public:
|
2021-04-24 12:10:57 +02:00
|
|
|
ParserMarkdown();
|
2021-04-17 12:14:21 +02:00
|
|
|
std::vector<Headline> extractHeadlines(std::string content) const;
|
|
|
|
std::string parse(const PageDao &pagedao, UrlProvider &provider, std::string content) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PARSER_MARKDOWN_H
|