Initial commit.
This commit is contained in:
commit
59c6161fdb
134 changed files with 4751 additions and 0 deletions
16
src/web/markdown/MarkdownParser.h
Normal file
16
src/web/markdown/MarkdownParser.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
|
||||
#include "HtmlDocument.h"
|
||||
|
||||
class MarkdownParser
|
||||
{
|
||||
HtmlDocumentPtr mHtmlDocument;
|
||||
|
||||
public:
|
||||
|
||||
MarkdownParser();
|
||||
|
||||
void ProcessLine(const std::string);
|
||||
|
||||
HtmlDocumentPtr GetHtml();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue