Skip to content

Instantly share code, notes, and snippets.

@dasevilla
Created June 27, 2014 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasevilla/9d7a292d0f3184a4c935 to your computer and use it in GitHub Desktop.
Save dasevilla/9d7a292d0f3184a4c935 to your computer and use it in GitHub Desktop.
tell application "Evernote"
set theTitle to do shell script "date +%Y/%m/%d"
set theTags to {"daily"}
set theNotebook to "Inbox"
set theNote to create note with text "" title theTitle tags theTags notebook theNotebook
tell theNote to append html "<div><strong>Links</strong></div><div><ul><li>None</li></ul></div><div><strong>Partners</strong></div><div><ul><li>None</li></ul></div><div><strong>Meetings</strong></div><div><ul><li>None</li></ul></div><div><hr /></div><div>Today</div>"
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment