ProductivityTools.ConvertDocuments.psd1
# # Module manifest for module 'module' # # Generated by: pwujczyk # # Generated on: 4/9/2020 3:46:28 PM # @{ # Script module or binary module file associated with this manifest. RootModule = 'ProductivityTools.ConvertDocuments.psm1' # Version number of this module. ModuleVersion = '1.0.9' # ID used to uniquely identify this module GUID = '43c657b0-5679-4e6d-87e4-624f37ed4917' # Author of this module Author = 'Pawel Wujczyk' # Description of the functionality provided by this module Description = 'Converts Word Documents to HTML and Markdown and Markdown to HTML and Docx' # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess # NestedModules = @() # Functions to export from this module FunctionsToExport = @('ConvertFrom-Markdown','ConvertFrom-Docx') # List of all files packaged with this module FileList = @('.\Pandoc.zip') # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('Convert','Markdown','HTML','Docx','ConvertToHTML','ConvertToMD','ConvertToMarkdown','ConvertToDocx') # A URL to the main website for this project. ProjectUri = 'http://productivitytools.tech/convert-documents/' # A URL to an icon representing this module. IconUri = 'http://cdn.productivitytools.tech/images/PT/ProductivityTools_blue_85px_3.png' } # End of PSData hashtable } # End of PrivateData hashtable' # HelpInfo URI of this module HelpInfoURI = 'http://productivitytools.tech/convert-documents/' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |