我使用dart doc .
工作并生成HTML文件。
我想生成降价文件。
在谷歌搜索时,我找到了这个答案https://github.com/dart-lang/dartdoc/issues/1479#issuecomment-868961953--这让我找到了这个PR:https://github.com/dart-lang/dartdoc/pull/2703
在https://github.com/dart-lang/dartdoc/pull/2703/files的比较中-我看到format
和md
-但我是新来的,所以我不知道如何使用这些信息来创建我需要使用的命令。
我期待像dart doc . --format md
这样的东西能工作,但它没有。
同样,当我运行dart doc --help
时,它会引导我到这里:https://dart.dev/go/dartdoc-options-file-它没有提到在Markdown中生成文档的能力。
也许这是不支持的?TY
1条答案
按热度按时间vawmfj5a1#
dart doc
无法创建降价格式的文档,您必须使用dartdoc
包(请参见https://github.com/dart-lang/dartdoc/issues/3241#issuecomment-1302150336)您必须运行
dart pub global run dartdoc --format=md
(但是生成的md
可能不是纯md
,请参见https://github.com/dart-lang/dartdoc/issues/3237)。