Update man page doc

This commit is contained in:
Patrik J. Braun
2026-01-24 21:10:47 +01:00
parent ac7274ea72
commit ed21d7f94b
2 changed files with 87 additions and 19 deletions
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -390,9 +390,9 @@ gulp.task('generate-man', async (cb): Promise<void> => {
'```\n' +
ConfigClassBuilder.attachPrivateInterface(defCFG).__printMan() +
'```';
txt += '\n\n ### `config.json` sample:\n';
txt += '```json\n' + JSON.stringify(defCFG, null, 4) + '```';
await fsp.writeFile('MANPAGE.md', txt);
txt += '\n\n ### `config.json` sample:\n\n';
txt += '```json\n' + JSON.stringify(defCFG, null, 4) + '\n```\n';
await fsp.writeFile(path.join(__dirname, 'docs', 'user-guide', 'configuration.md'), txt);
cb();
});