summaryrefslogtreecommitdiff
path: root/example/filter_html.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example/filter_html.cpp')
-rw-r--r--example/filter_html.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/example/filter_html.cpp b/example/filter_html.cpp
deleted file mode 100644
index a1957c3..0000000
--- a/example/filter_html.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-#include <html.hpp>
-#include <file.hpp>
-
-int main()
-{
- TexoFileExporter exporter(stdout);
- TexoHTMLProducer producer(exporter);
- TexoHTMLImporter importer(producer);
- importer.PutStr(
- "<script>EVIL MAGIC</script></p>\n"
- "<a href='#'>Some</a> br:<br/>\n"
- "<p class='evil_too'>And paragraphs work well too...</p>\n"
- "<b>You</b> <i>can</i> <del>use</del> <ins>some</ins> <p>witchcraft.\n"
- );
- return 0;
-}