API Reference
Cmdlet
Add-OfficeMarkdownCode
Adds a Markdown code block.
Remarks
Adds a Markdown code block.
Examples
Example 1: Add a PowerShell command block to documentation.
PS>
$script = @(
'Import-Module PSWriteOffice'
'Get-OfficeExcelSummary -Path .\report.xlsx'
) -join [Environment]::NewLine
New-OfficeMarkdown -Path .\Cookbook.md {
Add-OfficeMarkdownHeading -Level 2 -Text 'Workbook summary'
Add-OfficeMarkdownCode -Language 'powershell' -Content $script
}
Appends a fenced code block with a language identifier.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Add-OfficeMarkdownCode -Content <String> [-Language <String>] [-PassThru] [<CommonParameters>]#Parameter set:
ContextParameters
- Content String
- Code content.
- Language String
- Code language identifier.
- PassThru SwitchParameter
- Emit the Markdown document after appending the code block.
Outputs
OfficeIMO.Markdown.MarkdownDoc
Add-OfficeMarkdownCode -Content <String> -Document <MarkdownDoc> [-Language <String>] [-PassThru] [<CommonParameters>]#Parameter set:
DocumentParameters
- Content String
- Code content.
- Document MarkdownDoc
- Markdown document to update outside the DSL context.
- Language String
- Code language identifier.
- PassThru SwitchParameter
- Emit the Markdown document after appending the code block.
Outputs
OfficeIMO.Markdown.MarkdownDoc