Skip to content

Instantly share code, notes, and snippets.

@wgross
Last active June 13, 2018 06:19
Show Gist options
  • Save wgross/7734fd788518e15b79761bdecbf78b95 to your computer and use it in GitHub Desktop.
Save wgross/7734fd788518e15b79761bdecbf78b95 to your computer and use it in GitHub Desktop.
# https://en.wikipedia.org/wiki/Box-drawing_character
$lightBox = @{
vert = [char]::ConvertFromUtf32(9474)
horz = [char]::ConvertFromUtf32(9472)
leftup = [char]::ConvertFromUtf32(9484)
leftdown = [char]::ConvertFromUtf32(9492)
rightdown = [char]::ConvertFromUtf32(9496)
rightup = [char]::ConvertFromUtf32(9488)
}
filter in_box {
[string]$str = $_
@"
$($lightBox.leftup)$($lightBox.horz*$str.Length)$($lightBox.rightup)
$($lightBox.vert)$str$($lightBox.vert)
$($lightBox.leftdown)$($lightBox.horz*$str.Length)$($lightBox.rightdown)
"@
}
"text in a box"|in_box
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment