Getting plaintext into Anki fields on macOS: An update
A few years ago, I wrote about my problems with HTML in Anki fields. If you check out that previous post you’ll get the backstory about my objection.
The gist is this: If you copy something from the web, Anki tries to maintain the formatting. Basically it just pastes the HTML off the clipboard. Supposedly, Anki offers to strip the formatting with Shift-paste, but I’ve point out to the developer specific examples where this fails. Basically, I only want plain text. Ever. I will take care of any and all formatting needs via the card templates. Period.
In the previous solution, I used ApplesScript that is triggered in Quicksilver. I’ve migrated from Quicksilver to Keyboard Maestro since then, so it was time for an update. And the good news is that it’s simpler, it’s literally a Bash one-liner:
#!/bin/bash
#
# Convert contents of clipboard to plain text.
pbpaste | textutil -convert txt -stdin -stdout -encoding 4 | pbcopy
exit 0
In Keyboard Maestro, I just built a macro around this command line script. It’s still triggered by ⇧⌘W and also includes a paste command to Anki so it’s seamless compared to the previous solution.
A brief note about textutil
1 - it’s a built-in text conversion utility on macOS. The script pipes the text to textutil
which converts the format to text. The -encoding
option with a value of 4 is the NSUTF8StringEncoding
encoding format.2 Then the results are finally piped back to the clipboard.
-
NSStringEncoding enumeration - constants are provided by
NSString
as possible string encodings ↩︎