This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.MkDocs.
Summary
Create a new MkDocs project.
Syntax
public static void MkDocsNew(this ICakeContext context, DirectoryPath projectDirectory, MkDocsNewSettings settings)
Examples
MkDocsNew("./docs-project", new MkDocsNewSettings()
{
Verbose = true
});
MkDocsNew(new DirectoryPath("./docs-project") ,new MkDocsNewSettings()
{
Verbose = true
});
Attributes
| Type |
Description |
| CakeMethodAliasAttribute |
|
| CakeAliasCategoryAttribute |
|
| CakeNamespaceImportAttribute |
|
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
The context. |
| projectDirectory |
DirectoryPath |
New project directory path. |
| settings |
MkDocsNewSettings |
The settings. |
Return Value