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
With PSDocs v0.9.0 we can scan a sub-directory and generate documentation for templates based on a schema with selectors.
Instead of integration code like this:
# Scan for Azure template file recursively in the templates/ directoryGet-AzDocTemplateFile-Path templates/|ForEach-Object {
# Generate a standard name of the markdown file. i.e. <name>_<version>.md$template=Get-Item-Path $_.TemplateFile;
$templateName=$template.Directory.Parent.Name;
$version=$template.Directory.Name;
$docName="$($templateName)_$version";
# Generate markdownInvoke-PSDocument-Module PSDocs.Azure -OutputPath out/docs/-InputObject $template.FullName-InstanceName $docName;
}
With PSDocs v0.9.0 we can scan a sub-directory and generate documentation for templates based on a schema with selectors.
Instead of integration code like this:
or
we want this:
The text was updated successfully, but these errors were encountered: