Created
August 6, 2024 22:01
-
-
Save retpolanne/5c05ddaa1dd40d742a11d9ec9653dbf6 to your computer and use it in GitHub Desktop.
Copy and paste without background color (tested between slack and chrome)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
pbpaste -Prefer public.html \ | |
| xmllint --html - \ | |
| perl -pe 's/background-color:.*?;//g' \ | |
| perl -pe 's/background:.*?;//g' \ | |
| textutil -format html -stdin -convert rtf -stdout \ | |
| pbcopy -Prefer public.rtf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment