API Reference
Command
Add-OfficeMarkdownList
Adds a Markdown list.
Remarks
Adds a Markdown list.
Examples
Add a bullet list.
PS>MarkdownList -Items 'Alpha','Beta','Gamma'
Appends an unordered list 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-OfficeMarkdownList -Items <String[]> [-Ordered] [-PassThru] [-Start <Int32>] [<CommonParameters>]#Parameter set:
ContextParameters
- Items String[]
- List items to add.
- Ordered SwitchParameter
- Use an ordered list instead of bullets.
- PassThru SwitchParameter
- Emit the Markdown document after appending the list.
- Start Int32
- Starting number for ordered lists.
Outputs
OfficeIMO.Markdown.MarkdownDoc
Add-OfficeMarkdownList -Document <MarkdownDoc> -Items <String[]> [-Ordered] [-PassThru] [-Start <Int32>] [<CommonParameters>]#Parameter set:
DocumentParameters
- Document MarkdownDoc
- Markdown document to update outside the DSL context.
- Items String[]
- List items to add.
- Ordered SwitchParameter
- Use an ordered list instead of bullets.
- PassThru SwitchParameter
- Emit the Markdown document after appending the list.
- Start Int32
- Starting number for ordered lists.
Outputs
OfficeIMO.Markdown.MarkdownDoc