From: Jaakko Heinonen Date: Thu, 7 Feb 2002 21:28:59 +0000 (+0000) Subject: html filter update X-Git-Tag: upstream/0.6.1~2^2~301 X-Git-Url: https://git.deb.at/w?a=commitdiff_plain;ds=sidebyside;h=516879f5c54c7cfb1cea572d6fea8f664e8cc010;p=pkg%2Fabook.git html filter update --- diff --git a/ChangeLog b/ChangeLog index 2b65755..0e188aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2002-xx-xx - abook can be compiled with g++ - attempt to improve --datafile behavior + - html filter update (Morten Brix Pedersen) 2002-02-04 - use getopt to parse command line (also new options added) diff --git a/filter.c b/filter.c index ad80f45..1d42a28 100644 --- a/filter.c +++ b/filter.c @@ -820,14 +820,13 @@ html_export_write_head(FILE *out, int extra_column) { char *realname = get_real_name(); - fprintf(out, "\n"); - fprintf(out, "\n\n %s's addressbook", - realname ); + fprintf(out, "\n"); + fprintf(out, "\n\n %s's addressbook", realname ); fprintf(out, "\n\n\n"); fprintf(out, "\n

%s's addressbook

\n", realname ); fprintf(out, "

\n\n"); - fprintf(out, "
\n"); + fprintf(out, "
\n"); fprintf(out, "\n\n\n", abook_fields[extra_column].name); @@ -837,7 +836,7 @@ html_export_write_head(FILE *out, int extra_column) static void html_export_write_tail(FILE *out) { - fprintf(out, "\n
NameE-mail address(es)%s
\n"); + fprintf(out, "\n\n"); fprintf(out, "\n\n\n"); }