summaryrefslogtreecommitdiff
path: root/src/info2html/html.h
blob: 8a0f569406c5642cedfb36525e1a47b687ec4f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef HTML_H
#define HTML_H

#define HTML_ROOT "./htmltest"

#define HEADER_SIZE_1 "H1"
#define HEADER_SIZE_2 "H2"

void dump_html_for_node( NODE *node );

void open_body_text_html( FILE *f );
void close_body_text_html( FILE *f );
char *write_body_text_html( FILE *f, char *p, char *q, char *nodefile );

void open_menu_html( FILE *f, char *p );
void close_menu_html( FILE *f );
void write_menu_entry_html( FILE *f, char *p, char *nodefile,char **menu_end );

void write_header_html( FILE *f, char *p, char *hdr );

void write_html_horiz_rule( FILE *f );
#endif