From f60db2bc2d0977f4c3342515c1352eae166935e8 Mon Sep 17 00:00:00 2001 From: Janice Collins Date: Sat, 26 Jun 2021 17:15:40 -0700 Subject: [PATCH] unhide and add docs --- lib/src/dartdoc_options.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/src/dartdoc_options.dart b/lib/src/dartdoc_options.dart index 2582663693..95617c83c0 100644 --- a/lib/src/dartdoc_options.dart +++ b/lib/src/dartdoc_options.dart @@ -1608,9 +1608,10 @@ Future>> createDartdocOptions( hide: true), DartdocOptionArgOnly('showStats', false, resourceProvider, help: 'Show statistics useful for debugging.', hide: true), - // TODO(jdkoren): Unhide when we have good support for another format. DartdocOptionArgOnly('format', 'html', resourceProvider, - hide: true), + help: 'The format of documentation to generate: `md` for markdown, ' + '`html` for html.', + hide: false), // TODO(jcollins-g): refactor so there is a single static "create" for // each DartdocOptionContext that traverses the inheritance tree itself. ...await createExperimentOptions(resourceProvider),