private/core/Get-SafeMarkdown.ps1
function Get-SafeMarkdown($text) { $text = $text -replace "\[", "\[" $text = $text -replace "\]", "\]" return $text } |
function Get-SafeMarkdown($text) { $text = $text -replace "\[", "\[" $text = $text -replace "\]", "\]" return $text } |