FormatMarkdown.psd1

@{
    RootModule = 'FormatMarkdown.psm1';
    Guid = 'b0bf4ca6-93b1-4325-9570-bd3b06b2ada2';
    ModuleVersion = '0.2';
    Author = 'Trevor Sullivan <trevor@trevorsullivan.net>';
    Description = 'The FormatMarkdown module provides a single command (Format-Markdown) that emits a Markdown formatted table of objects.';
    FunctionsToExport = @('Format-Markdown');
    AliasesToExport = @('fmd');
    FileList = @('FormatMarkdown.psd1', 'FormatMarkdown.psm1', 'License.txt');
    Copyright = '(c) 2015 Trevor Sullivan. All rights reserved.';
    PrivateData = @{
        PSData = @{
            Tags = @('Markdown', 'Trevor Sullivan', 'Tools');
            ProjectUri = 'http://trevorsullivan.net';
            LicenseUri = 'https://creativecommons.org/licenses/by-nc/3.0/us/legalcode';
            ReleaseNotes = "November 27th, 2015 :: Initial release with Format-Markdown command and alias.";
            };
        };
}