Skip to content

Instantly share code, notes, and snippets.

@mavaddat
Created January 11, 2023 05:00
Show Gist options
  • Save mavaddat/3ad0d28cf3b4b3c864a0bd31241a4e46 to your computer and use it in GitHub Desktop.
Save mavaddat/3ad0d28cf3b4b3c864a0bd31241a4e46 to your computer and use it in GitHub Desktop.
Get Clipboard HTML
[System.Windows.Forms.Clipboard]::GetData("HTML Format") | ForEach-Object { $_ -replace '(?:<!--[^>]*-->|</?(html|body)>)' -split "`n"} | Select-Object -Skip 8 -First 1 | ForEach-Object { $_ -replace '<(\S+)[^>]*>','<$1>'} | Set-Clipboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment