File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,15 +125,15 @@ function Convert-ImageToASCIIArt {
125
125
}
126
126
}
127
127
128
- Write-Verbose - Message " Replacing characters from ASCII art, Removing empty lines from beginning and end"
128
+ Write-Verbose - Message " Replacing characters from ASCII art" # , Removing empty lines from beginning and end"
129
129
130
130
$asciiChars = $asciiChars -replace " [{0}-{1}]" -f $minCharIndex , $maxCharIndex , $contrastChars
131
131
132
132
# Remove blank lines from the start of the text
133
- $asciiChars = $asciiChars -replace " (?m)^\s*`r ?`n " , " "
133
+ # $asciiChars = $asciiChars -replace "(?m)^\s*`r?`n", ""
134
134
135
135
# Remove blank lines from the end of the text
136
- $asciiChars = $asciiChars -replace " `r ?`n \s*$" , " "
136
+ # $asciiChars = $asciiChars -replace "`r?`n\s*$", ""
137
137
138
138
# Output the ASCII art.
139
139
Write-Verbose - Message " Outputting the ASCII art"
You can’t perform that action at this time.
0 commit comments