I've been trying to improve our PS documentation and started playing with PlatyPS. So far, it's been great, I have nice markdown docs now. I'm also able to generate MAML for use with CLI documentation from it and have been able to remove the doc-comment strings from my modules.
Unfortunately, when I import my module it's unable to see the MAML help files and Get-Help
for my exported function is very barebones.
My understanding is that when packaging MAML within a module, they need to be placed as follows:
MyModuleName/
|_ en-US/
|_ MyModuleName-help.xml
However, I have done this, but I am still unable to see the proper help documentation from the command line with Get-Help
or -?
. This is my first foray into using external help documentation that doesn't use doc-comments, so I'm hoping I'm missing a step or making a MAML beginner's mistake.