diff options
Diffstat (limited to 'src/markdown_translator.h')
| -rw-r--r-- | src/markdown_translator.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/markdown_translator.h b/src/markdown_translator.h deleted file mode 100644 index 6c0c1bc..0000000 --- a/src/markdown_translator.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef MARKDOWN_TRANSLATOR_H -#define MARKDOWN_TRANSLATOR_H - -#include <string> -#include <vector> -#include <sstream> -#include <ctime> - -class MarkdownTranslator { -public: - // Constructor - MarkdownTranslator(); - // Destructor - ~MarkdownTranslator(); - // Main translation function - takes markdown content and returns HTML - std::string translate(const std::string& markdownContent, const std::string& cssPath = "styles/carbon.css"); - std::string processLine(const std::string& line); - -private: - // Helper functions for different markdown elements - void processMetadata(const std::vector<std::string>& lines); - std::string processHeaders(const std::string& line); - std::string processBold(const std::string& text); - std::string processItalic(const std::string& text); - std::string processLinks(const std::string& text); - std::string processParagraph(const std::string& text); - std::string processSingleFigure(const std::string& text); - std::string processFigureBlock(const std::vector<std::string>& lines); - // Navigation and table of contents - void generateSideBar(std::stringstream& output, const std::vector<std::string>& headers); - std::string createAnchorId(const std::string& text); - // Utility functions - std::string getCurrentDateTime(); - - // Member variables - std::string title; -}; - -#endif // MARKDOWN_TRANSLATOR_H |
