Friday 25 July 2014

E-Mail to Evernote

I fixed a bug in the Send E-Mail to Evernote.scpt where it would crash if the HTML at some point would contain   or other ISO encoded characters. You can download a new version here.

If you maintain your own changes in this script, here's the fix. Change the following lines inside the function htmlFix:

     --TEST FOR / STRIP OUT LEADING SEMI-COLON
     
if item 1 of paraSource contains ";" then

into this:

     --TEST FOR / STRIP OUT LEADING SEMI-COLON (skip   stuff)
     
if item 1 of paraSource contains ";" and item 1 of paraSource does not contain "&" then