4 * Converts man pages to HTML. This kioslave is not part of kdelibs and is
14 /** call this with the buffer you have */
15 void scan_man_page(const char *man_page
);
18 * Set the paths to KDE resources
20 * \param cssPath Path to the KDE resources, encoded for CSS
24 extern void setResourcePath(const QByteArray
& _cssPath
);
27 * Sets the path to a CSS file that should be included with the generated
30 * \param HTML-encoded path to the file to reference for stylesheets.
33 extern void setCssFile(const QByteArray
& _cssFile
);
35 /** implement this somewhere. It will be called
38 extern void output_real(const char *insert
);
41 * called for requested man pages. filename can be a
42 * relative path! Return NULL on errors. The returned
43 * char array is freed by man2html
45 extern char *read_man_page(const char *filename
);