Commit a3a7b635 authored by Claes Sjofors's avatar Claes Sjofors

Convert wbl to html, <br> added to headers and bold text

parent 5e095a91
...@@ -630,13 +630,13 @@ endl << ...@@ -630,13 +630,13 @@ endl <<
html_clf->f << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl; html_clf->f << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) { else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) {
html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP>" << endl; html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) {
html_clf->f << "</XMP><H3>" << txt + 3 << "</H3><XMP>" << endl; html_clf->f << "</XMP><H3>" << txt + 3 << "</H3><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) {
html_clf->f << "</XMP><H4>" << txt + 3 << "</H4><XMP>" << endl; html_clf->f << "</XMP><H4>" << txt + 3 << "</H4><BR><XMP>" << endl;
} }
else else
html_clf->f << ctx->rw->doc_text[i] << endl; html_clf->f << ctx->rw->doc_text[i] << endl;
...@@ -908,13 +908,13 @@ int CnvWblToHtml::attribute_exec() ...@@ -908,13 +908,13 @@ int CnvWblToHtml::attribute_exec()
continue; continue;
} }
else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) { else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) {
html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP>" << endl; html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP><BR>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) {
html_clf->f << "<H3>" << txt + 3 << "</H3>" << endl; html_clf->f << "<H3>" << txt + 3 << "</H3><BR>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) {
html_clf->f << "<H4>" << txt + 3 << "</H4>" << endl; html_clf->f << "<H4>" << txt + 3 << "</H4><BR>" << endl;
} }
else { else {
html_clf->f << ctx->rw->doc_text[i]; html_clf->f << ctx->rw->doc_text[i];
...@@ -985,13 +985,13 @@ int CnvWblToHtml::attribute_exec() ...@@ -985,13 +985,13 @@ int CnvWblToHtml::attribute_exec()
fp_tmp << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl; fp_tmp << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) { else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) {
fp_tmp << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP>" << endl; fp_tmp << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) {
fp_tmp << "</XMP><H3>" << txt + 3 << "</H3><XMP>" << endl; fp_tmp << "</XMP><H3>" << txt + 3 << "</H3><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) {
fp_tmp << "</XMP><H4>" << txt + 3 << "</H4><XMP>" << endl; fp_tmp << "</XMP><H4>" << txt + 3 << "</H4><BR><XMP>" << endl;
} }
else else
fp_tmp << ctx->rw->doc_text[i] << endl; fp_tmp << ctx->rw->doc_text[i] << endl;
...@@ -1032,13 +1032,13 @@ int CnvWblToHtml::bit_exec() ...@@ -1032,13 +1032,13 @@ int CnvWblToHtml::bit_exec()
continue; continue;
} }
else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) { else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) {
html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP>" << endl; html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP><BR>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) {
html_clf->f << "<H3>" << txt + 3 << "</H3>" << endl; html_clf->f << "<H3>" << txt + 3 << "</H3><BR>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) {
html_clf->f << "<H4>" << txt + 3 << "</H4>" << endl; html_clf->f << "<H4>" << txt + 3 << "</H4><BR>" << endl;
} }
else { else {
html_clf->f << ctx->rw->doc_text[i]; html_clf->f << ctx->rw->doc_text[i];
...@@ -1081,13 +1081,13 @@ int CnvWblToHtml::bit_exec() ...@@ -1081,13 +1081,13 @@ int CnvWblToHtml::bit_exec()
fp_tmp << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl; fp_tmp << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) { else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) {
fp_tmp << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP>" << endl; fp_tmp << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) {
fp_tmp << "</XMP><H3>" << txt + 3 << "</H3><XMP>" << endl; fp_tmp << "</XMP><H3>" << txt + 3 << "</H3><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) {
fp_tmp << "</XMP><H4>" << txt + 3 << "</H4><XMP>" << endl; fp_tmp << "</XMP><H4>" << txt + 3 << "</H4><BR><XMP>" << endl;
} }
else else
fp_tmp << ctx->rw->doc_text[i] << endl; fp_tmp << ctx->rw->doc_text[i] << endl;
...@@ -1265,13 +1265,13 @@ endl << ...@@ -1265,13 +1265,13 @@ endl <<
html_clf->f << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl; html_clf->f << "</XMP><IMG SRC=\"" << imagefile << "\"><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) { else if ( strncmp( CnvCtx::low(txt), "@b", 2) == 0) {
html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><XMP>" << endl; html_clf->f << "</XMP><B><FONT SIZE=\"3\">" << txt + 2 << "</FONT></B><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h1", 3) == 0) {
html_clf->f << "</XMP><H3>" << txt + 3 << "</H3><XMP>" << endl; html_clf->f << "</XMP><H3>" << txt + 3 << "</H3><BR><XMP>" << endl;
} }
else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) { else if ( strncmp( CnvCtx::low(txt), "@h2", 3) == 0) {
html_clf->f << "</XMP><H4>" << txt + 3 << "</H4><XMP>" << endl; html_clf->f << "</XMP><H4>" << txt + 3 << "</H4><BR><XMP>" << endl;
} }
else else
html_clf->f << ctx->rw->doc_text[i] << endl; html_clf->f << ctx->rw->doc_text[i] << endl;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment