summaryrefslogtreecommitdiff
path: root/examples/plain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/plain.cpp')
-rw-r--r--examples/plain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/plain.cpp b/examples/plain.cpp
index f03ee68..bf48472 100644
--- a/examples/plain.cpp
+++ b/examples/plain.cpp
@@ -8,7 +8,7 @@
void plain()
{
- fputs(" ---- Plain to Plain ----\n\n", stdout);
+ fputs(" ---- Plain to Plain ----\n", stdout);
TexoExporterFile exporter(stdout);
TexoProducerPlain producer(exporter);
TexoImporterPlain importer(producer);
@@ -20,7 +20,7 @@ void plain()
void html()
{
- fputs("\n\n ---- Plain to HTML ----\n\n", stdout);
+ fputs("\n ---- Plain to HTML ----\n", stdout);
TexoExporterFile exporter(stdout);
TexoProducerHTML producer(exporter);
TexoImporterPlain importer(producer);
@@ -32,7 +32,7 @@ void html()
void markdown()
{
- fputs("\n\n ---- Plain to Markdown ----\n\n", stdout);
+ fputs("\n ---- Plain to Markdown ----\n", stdout);
TexoExporterFile exporter(stdout);
TexoProducerMarkdown producer(exporter);
TexoImporterPlain importer(producer);
@@ -44,7 +44,7 @@ void markdown()
void lines()
{
- fputs("\n\n ---- Plain to Lines ----\n\n", stdout);
+ fputs("\n ---- Plain to Lines ----\n", stdout);
TexoExporterFile exporter(stdout);
TexoProducerLines producer(exporter);
TexoImporterPlain importer(producer);