md - Convert - MultiMarkdown to RTF throws an error Automator encountered an error running this workflow: "Couldn't communicate with helper application." everything is installed correctly, running 10.13.6 Rebuilt it from scratch still the same error... Thanks
> @be_seeing_you @ttscoff Throw stuff in clipboard to get RTF out. Using an apple dev incident to figure out the encoding bug you see in test
Was it that you didn't specify an encoding for textutil? It jumbled up non-ASCII characters unless I added -inputencoding UTF-8:
textutil -inputencoding UTF-8 -format html -convert rtf -stdin -stdout <<< "<style>$(cat /Applications/Marked.app/Contents/Resourc... <<< '# aäあ')" | LC_ALL=UTF-8 pbcopy
pbcopy also uses ASCII if LC_CTYPE is C (or unset).