diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-10-01 17:59:24 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-10-01 17:59:24 +0200 |
commit | 5ff3d7a51be30a0052b12f9330fdf54f3c104739 (patch) | |
tree | 07f6780c4196205fe70b4caf6486b13fba80e30f /src/content/markdown/Markdown.hpp | |
parent | 2186064e52ec4029fd060323b51de973da4cee5f (diff) |
Added Markdown and Static content module.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/content/markdown/Markdown.hpp')
-rw-r--r-- | src/content/markdown/Markdown.hpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/content/markdown/Markdown.hpp b/src/content/markdown/Markdown.hpp new file mode 100644 index 0000000..41c8b4d --- /dev/null +++ b/src/content/markdown/Markdown.hpp @@ -0,0 +1,28 @@ +#ifndef MARKDOWN_H +#define MARKDOWN_H 1 + +#include "../../Content.hpp" +#include "../../Filesystem.hpp" + +class Markdown : public Content +{ +public: + explicit Markdown(std::string uriBasePath, std::string markdownFilesPath); + + bool Init(); + void Shutdown(); + bool Render(RequestResponse & rr, RenderData & rd, std::string & out); + + std::string const & GetUriBasePath() const; + std::string const & GetMainTemplate() const; + Redirections const & GetRedirections() const; + +private: + std::string m_UriBasePath; + std::string m_MainTemplatePath; + std::string m_MarkdownFilesPath; + Redirections m_Redirections; + Filesystem m_MarkdownFiles; +}; + +#endif |