| external help file | PSWriteOffice-help.xml |
|---|---|
| Module Name | PSWriteOffice |
| online version | https://github.com/EvotecIT/PSWriteOffice |
| schema | 2.0.0 |
Parses Markdown text or files into a Markdown document model.
Get-OfficeMarkdown [-InputPath] <string> [-Options <MarkdownReaderOptions>] [-Profile <MarkdownReaderOptions+MarkdownDialectProfile>] [<CommonParameters>]Get-OfficeMarkdown -Text <string> [-Options <MarkdownReaderOptions>] [-Profile <MarkdownReaderOptions+MarkdownDialectProfile>] [<CommonParameters>]Parses Markdown text or files into a Markdown document model.
PS>$md = Get-OfficeMarkdown -Path .\README.mdLoads the file into a Markdown document object.
PS>$md = Get-OfficeMarkdown -Text '# Title`n`nBody text'Parses Markdown text directly into a document model.
Path to the Markdown file.
Type: String
Parameter Sets: Path
Aliases: FilePath, Path
Possible values:
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: TrueOptional reader options.
Type: MarkdownReaderOptions
Parameter Sets: Path, Text
Aliases: None
Possible values:
Required: False
Position: named
Default value: None
Accept pipeline input: False
Accept wildcard characters: TrueNamed reader profile used when Options is not supplied.
Type: Nullable`1
Parameter Sets: Path, Text
Aliases: None
Possible values:
Required: False
Position: named
Default value: None
Accept pipeline input: False
Accept wildcard characters: TrueMarkdown text to parse.
Type: String
Parameter Sets: Text
Aliases: None
Possible values:
Required: True
Position: named
Default value: None
Accept pipeline input: False
Accept wildcard characters: TrueThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
None
OfficeIMO.Markdown.MarkdownDoc
- None