export class MarkdownGenerator { static generalDescription = `# Run Options\nThis file contains an auto-generated list of the available command line options.`; getPreamble() { return `${MarkdownGenerator.generalDescription}\n`; } formatPrefix(args, placeholder) { return ` * \`${args.join(", ")}${placeholder ? " " + placeholder : ""}\``; } formatDefault(value) { return ` (default: ${value})`; } formatDescription(description) { return description; } formatTitle(title, level) { return title ? `\n${"#".repeat(level)} ${title}` : "\n"; } formatSubcommand(command) { return `\n\n### ${command}`; } createSection(name) { return `\n${name}\n`; } } //# sourceMappingURL=./markdown-generator.ts.map