Skip to content

Commit

Permalink
Add european localized quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien Tschanz committed Dec 11, 2024
1 parent 02e98ab commit 1538da1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ReverseDSC.Core.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Hashtable that contains the list of Key properties and their values.
{
if (!$null -eq $NewParams.Item($_))
{
$value = "`"" + $NewParams.Item($_).ToString().Replace('`', '``').Replace("`"", "```"") + "`""
$value = "`"" + $NewParams.Item($_).ToString().Replace('`', '``').Replace("`"", "```"").Replace("`„", "```„").Replace("`“", "```“").Replace("`”", "```”") + "`""
}
else
{
Expand Down Expand Up @@ -283,7 +283,7 @@ Hashtable that contains the list of Key properties and their values.
{
$value = "@("
$hash | ForEach-Object {
$value += "`"" + $_.ToString().Replace('`', '``').Replace("`"", "```"") + "`","
$value += "`"" + $_.ToString().Replace('`', '``').Replace("`"", "```"").Replace("`„", "```„").Replace("`“", "```“").Replace("`”", "```”") + "`","
}
if ($value.Length -gt 2)
{
Expand Down

0 comments on commit 1538da1

Please sign in to comment.