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

#define HTML_ROOT "./htmltest"

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

extern char *BaseFilename;
extern char *OverrideBaseFilename;

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