Indent.psd1

@{
RootModule = 'Indent.psm1'
ModuleVersion = '1.0.0'
CompatiblePSEditions = @('Core', 'Desktop')
GUID = '5f26235d-ce21-46f4-8a77-9b373e605da5'
Author = 'Jonathan Dung'
Copyright = '(c) 2026 Jonathan Dung. All rights reserved.'
Description = 'Advanced function that indents every line of each input string and implicitly converts CRLF line endings to LF.'
PowershellVersion = '5.1'
FunctionsToExport = @('Indent')
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
  PSData = @{
    Tags = @('Dependency-free', 'Formatting', 'Indentation', 'Simple', 'Strings', 'Text-processing', 'Tool', 'Utility', 'Versatile')
    LicenseUri = 'https://github.com/jonathandung/Indent/blob/main/LICENSE'
    ProjectUri = 'https://github.com/jonathandung/Indent'
  }
}
}