fix: escape tilde operator (#3868)

Prevents markdown to interpret it as 'strike down' style when 2 or more tilde operators appear
This commit is contained in:
Ryan
2021-08-09 08:59:59 +00:00
committed by GitHub
parent b56230f342
commit dcb58dee7a

View File

@@ -353,6 +353,8 @@ function Get-AptPackages {
if ($Null -eq $version) {
$version = $(dpkg-query -W -f '${Version}' "$pkg*")
}
$version = $version -replace '~','\~'
$output += [PSCustomObject] @{
Name = $pkg