git clone https://github.com/PowerShell/platyPS
There are two parts:
Markdown.MAML.dll
, a .NET library written in C#. It does the heavy lifting, like parsing Markdown, transforming it into XML, and so on. You can open.\Markdown.MAML.sln
in Visual Studio on any platform.- A PowerShell module in
.\src\platyPS
. This module provides the user CLI.
To build the whole project, use the build.ps1
helper script. It depends on the dotnet cli
build tool.
On Windows you would also need to install full dotnet framework if it's not installed already.
.\build.ps1
As part of the build, platyPS generates help for itself. The output of the build is placed in
out\Microsoft.PowerShell.PlatyPS
.
build.ps1
also imports the module from out\platyPS
and generates help itself.
Note
If you changed C# code, build.ps1
will try to overwrite a DLL in use. You will then need to
re-open your PowerShell session. If you know a better workflow, please suggest it in the Issues.
Each part of the project has a test set:
- The C# part has xUnit tests. You can run them from Visual Studio or from command line with
dotnet test ./test/Markdown.MAML.Test
. - The PowerShell part has Pester tests. You can run them with
Invoke-Pester
.
Note
Pester tests always force-import the module from the output location of .\build.ps1
.
If you have ideas or concerns about the Markdown schema, feel free to open a GitHub Issue to discuss it.
- src\platyPS - sources to create the final PowerShell module.
- src\Markdown.MAML, Markdown.MAML.sln - source code for C# Markdown to MAML converter.
- platyPS.schema.md - description of Markdown that platyPS expects.
Data transformations are the core of platyPS. A user has content in some form and she wants to transform it into another form. E.g. transform existing module help (in MAML) to Markdown and use it in the future to generate the external help (MAML) and static HTML for online references.
platyPS provides APIs in the form of cmdlets for end-user scenarios. These scenarios are assembled from simple transformations. This chart describes these simple transformations:
+----------+
| |
| HTML |
| |
+------^---+
|
+------+------------+ +-----------------+
| | | Markdown Model |
| Markdown file +-----------> |
| | +-+---------------+
| | |
+---------------^---+ |
| |
| |
| |
+--+-----------------v--+
| MAML Model |
| (= Generic Help model)|
| |
+--+-------------------^+
| |
| |
| |
+----------------v-----+ ++--------------------------+
| MAML XML file | | Help Object in PowerShell |
| (External help file) +------------> (+ Get-Command object) |
+----------------------+ +---------------------------+
A user creates a platyPS Markdown for the first time with New-MarkdownHelp
:
New-MarkdownHelp -Command New-MyCommandHelp
Under the hood, the following tranformations happen:
[MAML XML file] --> [Help Object + Get-Command object] --> [MAML Model] --> [Markdown file]
- Make sure that
CHANGELOG.md
is up-to-date, move section fromUNRELEASED
to new section<release name>
. - Make sure platyPS help itself (content in .\docs folder) is up to date.
Update-MarkdownHelp -Path .\docs
should result in no changes. - Do not change the version in platyps.psd1. Git tag will update this version for release.
- From master, tag the release.
- Push tag to GitHub.
- Find the corresponding build on AppVeyor.
- Download ZIP archive with the module from Appveyor's Artifacts tab.
- Unblock the ZIP archive (
Unblock-File foo.zip
), and copy the ZIP's contents to$env:PSMODULEPATH
so it's available toPublish-Module
. - Publish the module to the Gallery:
Publish-Module -RequiredVersion <version> -Verbose -NuGetApiKey $apiKey
. - Check that https://www.powershellgallery.com/packages/platyPS/ updated.
- Publish a new github release from https://github.com/PowerShell/platyPS/releases to move "Latest release" label to the new tag.
Congratulations! You just made a release.