When I first tried to use the new markdown commands to show a markdown file, it seemed obvious to me that I'd just run:
# Expected:
Show-Markdown .\README.md
but that doesn't work. You have to execute this instead:
# Actual:
ConvertFrom-Markdown -path .\README.md -AsVT100EncodedString | Show-Markdown
It seems to me that Show-Markdown should have a Path parameter set so that you can simply specify the path to a markdown file to be shown.
Environment data
> $PSVersionTable
Name Value
---- -----
PSVersion 6.1.0-preview.4
PSEdition Core
GitCommitId 6.1.0-preview.4
OS Microsoft Windows 10.0.17134
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
When I first tried to use the new markdown commands to show a markdown file, it seemed obvious to me that I'd just run:
but that doesn't work. You have to execute this instead:
It seems to me that
Show-Markdownshould have a Path parameter set so that you can simply specify the path to a markdown file to be shown.Environment data