Topic: https://brettterpstra.com/2013/03/08/new-in-the-markdown-service-tools-in-place-markdown-to-rtf/
hide preview

What's next? verify your email address for reply notifications!

unverified 4y, 207d ago

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

remark link
hide preview

What's next? verify your email address for reply notifications!

unverified 4y, 202d ago

I'm having the exact same error as the user above. Running MacOs 10.14.6. Would love, love, love to figure this out so I could write markdown in Mail.app.

Thanks!

hide preview

What's next? verify your email address for reply notifications!

Bad Uncle Leo 12y, 11d ago

All you whizkids already know this, but those who do not:

If you install from MacPorts, you'll have to do a symlink to the MultiMarkDown binary:

sudo ln -s /opt/local/bin/multimarkdown /usr/local/bin/multimarkdown

After that, instead of spinning it should work. Instantly. To Brett & Tobia: Wow.

hide preview

What's next? verify your email address for reply notifications!

Lauri Ranta 12y, 11d ago

> @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).

hide preview

What's next? verify your email address for reply notifications!