API Reference
Command
Add-OfficeMarkdownCallout
Adds a Markdown callout block.
Remarks
Adds a Markdown callout block.
Examples
Add a note callout.
PS>MarkdownCallout -Kind 'note' -Title 'Remember' -Body 'Update the metrics.'
Appends a callout block to the document.
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-OfficeMarkdownCallout -Body <String> -Kind <String> [-PassThru] -Title <String> [<CommonParameters>]#Parameter set:
ContextParameters
- Body String
- Callout body text.
- Kind String
- Callout kind (e.g. note, tip, warning).
- PassThru SwitchParameter
- Emit the Markdown document after appending the callout.
- Title String
- Callout title.
Outputs
OfficeIMO.Markdown.MarkdownDoc
Add-OfficeMarkdownCallout -Body <String> -Document <MarkdownDoc> -Kind <String> [-PassThru] -Title <String> [<CommonParameters>]#Parameter set:
DocumentParameters
- Body String
- Callout body text.
- Document MarkdownDoc
- Markdown document to update outside the DSL context.
- Kind String
- Callout kind (e.g. note, tip, warning).
- PassThru SwitchParameter
- Emit the Markdown document after appending the callout.
- Title String
- Callout title.
Outputs
OfficeIMO.Markdown.MarkdownDoc