This command creates the Markdown module file for a PowerShell module. The module file contains the
module metadata and a list of all commands with their synopsis descriptions. This file can be used
as the module landing page in a documentation set. The module metadata is used to by
Export-MamlCommandHelp to create the MAML help file for the module.
Examples
Example 1 - Create a new module file from a folder of command help files
This parameter allows you to specify the version of the help. The default value is 1.0.0.0. This
version is written to the HelpInfo.xml file that is used for updateable help.
This parameter allows you to specify the language locale for the help files. By default, the cmdlet
uses the current CultureInfo. Use the Get-Culture cmdlet to see the current culture settings
on your system.
The metadata to add to the frontmatter of the markdown file. The metadata is a hashtable where the
you specify the key and value pairs to add to the frontmatter. New key names are added to the
existing frontmatter. The values of existing keys are overwritten. You can't overwrite the values of
the document type or PlatyPS schema version keys. If these keys are present in the hashtable,
the cmdlet ignores the values and outputs a warning.
Specifies the location of where the Markdown module file is written. The cmdlet creates a folder for
each module based on the CommandHelp object being processed.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable,
-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see
about_CommonParameters.