blob: 20097727a8e862450bb7c9bb0cb6f08ad6a5609c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#include "Markdown.hpp"
Markdown::Markdown(std::string uriBasePath, std::string markdownFilesPath)
: Content(), m_UriBasePath(uriBasePath), m_MainTemplatePath(""), m_MarkdownFilesPath(markdownFilesPath)
{
}
bool Markdown::Init()
{
std::cout << "Markdown files path: " << m_MarkdownFilesPath << std::endl;
std::vector<std::string> extensions = {"md"};
if (m_MarkdownFiles.Scan(m_MarkdownFilesPath, extensions, false) == false)
{
return false;
}
return true;
}
void Markdown::Shutdown()
{
std::cout << "Markdown module shutdown" << std::endl;
}
bool Markdown::Render(RequestResponse & rr, RenderData & rd, std::string & out)
{
(void)out;
rd["blub"] = "Yoh21!";
rr.UseOutputHeader();
rr.AddOutputHeader("blaaaa", "blubb");
return true;
}
std::string const & Markdown::GetUriBasePath() const
{
return m_UriBasePath;
}
std::string const & Markdown::GetMainTemplate() const
{
return m_MainTemplatePath;
}
Redirections const & Markdown::GetRedirections() const
{
return m_Redirections;
}
|