]> git.sven.stormbind.net Git - sven/vym.git/blob - export-markdown.h
6b7f6a9c9c5d5659f8e1f9c5417f36743b5e8dec
[sven/vym.git] / export-markdown.h
1 #ifndef EXPORT_MARKDOWN_H
2 #define EXPORT_MARKDOWN_H
3
4 #include "export-base.h"
5
6 class ExportMarkdown : public ExportBase {
7   public:
8     ExportMarkdown();
9     virtual void doExport();
10     virtual QString underline(const QString &text, const QString &line);
11 };
12
13 #endif