summaryrefslogtreecommitdiff
path: root/examples/markdown.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/markdown.cpp')
-rw-r--r--examples/markdown.cpp61
1 files changed, 61 insertions, 0 deletions
diff --git a/examples/markdown.cpp b/examples/markdown.cpp
new file mode 100644
index 0000000..2fbe37f
--- /dev/null
+++ b/examples/markdown.cpp
@@ -0,0 +1,61 @@
+#include <stdio.h>
+#include <html.hpp>
+#include <plain.hpp>
+#include <lines.hpp>
+#include <markdown.hpp>
+#include <file.hpp>
+
+
+void plain()
+{
+ fputs(" ---- Markdown to Plain ----\n\n", stdout);
+ TexoExporterFile exporter(stdout);
+ TexoProducerPlain producer(exporter);
+ TexoImporterMarkdown importer(producer);
+ FILE *file = fopen("markdown.md", "r");
+ importer.Put(file);
+ fclose(file);
+}
+
+void html()
+{
+ fputs("\n\n ---- Markdown to HTML ----\n\n", stdout);
+ TexoExporterFile exporter(stdout);
+ TexoProducerHTML producer(exporter);
+ TexoImporterMarkdown importer(producer);
+ FILE *file = fopen("markdown.md", "r");
+ importer.Put(file);
+ fclose(file);
+}
+
+void markdown()
+{
+ fputs("\n\n ---- Markdown to Markdown ----\n\n", stdout);
+ TexoExporterFile exporter(stdout);
+ TexoProducerMarkdown producer(exporter);
+ TexoImporterMarkdown importer(producer);
+ FILE *file = fopen("markdown.md", "r");
+ importer.Put(file);
+ fclose(file);
+}
+
+void lines()
+{
+ fputs("\n\n ---- Markdown to Lines ----\n\n", stdout);
+ TexoExporterFile exporter(stdout);
+ TexoProducerLines producer(exporter);
+ TexoImporterMarkdown importer(producer);
+ FILE *file = fopen("markdown.md", "r");
+ importer.Put(file);
+ fclose(file);
+}
+
+int main()
+{
+ plain();
+ html();
+ markdown();
+ lines();
+
+ return 0;
+}