diff options
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 |