You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Configures DocC to include a LMDB representation of the navigator index in the output.
169
169
///
170
-
/// The plugin defines this name so that it can pass this flag by default.
170
+
/// The plugin defines this flag so that it can pass this flag by default.
171
171
staticletemitLMDBIndex=CommandLineArgument.Flag(
172
172
preferred:"--emit-lmdb-index"
173
173
)
174
174
175
175
/// The directory where DocC will write the built documentation archive.
176
176
///
177
-
/// The plugin defines this name so that it can intercept it and support building documentation for multiple targets within one package build command.
177
+
/// The plugin defines this option so that it can intercept it and support building documentation for multiple targets within one package build command.
178
178
staticletoutputPath=CommandLineArgument.Option(
179
179
preferred:"--output-path",
180
180
alternatives:["--output-dir","-o"]
181
181
)
182
182
183
183
/// A DocC feature flag to enable support for linking to documentation dependencies.
184
184
///
185
-
/// The plugin defines this name so that it can specify documentation dependencies based on target dependencies when building combined documentation for multiple targets.
185
+
/// The plugin defines this flag so that it can specify documentation dependencies based on target dependencies when building combined documentation for multiple targets.
/// A DocC flag that specifies a dependency DocC archive that the current build can link to.
191
191
///
192
-
/// The plugin defines this name so that it can specify documentation dependencies based on target dependencies when building combined documentation for multiple targets.
192
+
/// The plugin defines this option so that it can specify documentation dependencies based on target dependencies when building combined documentation for multiple targets.
/// A DocC flag for the "merge" command that specifies a custom display name for the synthesized landing page.
199
199
///
200
-
/// The plugin defines this name so that it can specify the package name as the display name of the default landing page when building combined documentation for multiple targets.
200
+
/// The plugin defines this option so that it can specify the package name as the display name of the default landing page when building combined documentation for multiple targets.
/// A DocC flag for the "merge" command that specifies a custom kind for the synthesized landing page.
206
206
///
207
-
/// The plugin defines this name so that it can specify "Package" as the kind of the default landing page when building combined documentation for multiple targets.
207
+
/// The plugin defines this option so that it can specify "Package" as the kind of the default landing page when building combined documentation for multiple targets.
0 commit comments