]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - src/export-markdown.h
New upstream version 2.9.22
[sven/vym.git] / src / export-markdown.h
diff --git a/src/export-markdown.h b/src/export-markdown.h
new file mode 100644 (file)
index 0000000..6b7f6a9
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef EXPORT_MARKDOWN_H
+#define EXPORT_MARKDOWN_H
+
+#include "export-base.h"
+
+class ExportMarkdown : public ExportBase {
+  public:
+    ExportMarkdown();
+    virtual void doExport();
+    virtual QString underline(const QString &text, const QString &line);
+};
+
+#endif