Write Help as HTML files

specific binary to generate HTML doc : bin/generatedoc
see http://pulkomandy.tk/projects/GrafX2/ticket/8
This commit is contained in:
Thomas Bernard
2018-01-30 21:02:04 +01:00
parent ee70156802
commit 6ae8d8153b
5 changed files with 323 additions and 4 deletions

View File

@@ -248,7 +248,7 @@ typedef struct
/// Data for one line of the "Help" screens.
typedef struct {
char Line_type; ///< Kind of line: 'N' for normal line, 'S' for a bold line, 'K' for a line with keyboard shortcut, 'T' and '-' for upper and lower titles.
char * Text; ///< Displayed string.
const char * Text; ///< Displayed string.
int Line_parameter; ///< Generic parameter depending on line type. For 'K' lines: a shortcut identifier. For others: unused.
} T_Help_table;