Skip to content

Instantly share code, notes, and snippets.

View fractaledmind's full-sized avatar

Stephen Margheim fractaledmind

View GitHub Profile
@fractaledmind
fractaledmind / Wikify Evernote: Autolinking to Pre-Existing Notes
Created August 13, 2013 19:55
This script searches for matches in the current EN note to pre-existing Wiki notes and links to them. It thus mimics the autolinking functionality of personal wikis, such as Voodoopad. To use, you simply either type up a note or go to an existing note and run the script. The script functions by [1] getting the text content of the selected note, …
tell application "Evernote"
try
set Evernote_Selection to selection
if Evernote_Selection = {} then
display dialog "Please select the note to Wikify"
end if
set noteName to (title of item 1 of Evernote_Selection)
set notebookName to (name of notebook of item 1 of Evernote_Selection)
end try
@fractaledmind
fractaledmind / Wikify Evernote: Autolinking to Pre-Existing Notes (for TextMate2)
Last active December 21, 2015 05:39 — forked from fractaledmind/Wikify Evernote: Autolinking to Pre-Existing Notes
// FOR THE FREE TEXTMATE2 APP. // This script searches for matches in the current EN note to pre-existing Wiki notes and links to them. It thus mimics the autolinking functionality of personal wikis, such as Voodoopad. To use, you simply either type up a note or go to an existing note and run the script. The script functions by [1] getting the t…
tell application "Evernote"
try
set Evernote_Selection to selection
if Evernote_Selection = {} then
display dialog "Please select the note to Wikify"
end if
set noteName to (title of item 1 of Evernote_Selection)
set notebookName to (name of notebook of item 1 of Evernote_Selection)
end try
@fractaledmind
fractaledmind / Wikify Evernote: Autolinking to New Notes (for TextMate2)
Last active December 21, 2015 05:39 — forked from fractaledmind/Wikify Evernote: Autolinking to New Notes
// FOR THE FREE TEXTMATE2 APP // This script take the selected note and makes it an Index Page for Wiki-Style sub-pages created in a seperate Notebook that is entitled the same as your Note. It uses WikiWords and [[bracketed]] words as the base for the newly created notes. To use, you simply type up a note and put in WikiWords or a term in [[dou…
tell application "Evernote"
try
set Evernote_Selection to selection
if Evernote_Selection = {} then
display dialog "Please select the note to Wikify"
end if
set noteName to (title of item 1 of Evernote_Selection)
set notebookName to (name of notebook of item 1 of Evernote_Selection)
end try
@fractaledmind
fractaledmind / Wikify Evernote: Autolinking to Pre-Existing Notes (for TextEdit)
Last active December 21, 2015 05:39 — forked from fractaledmind/Wikify Evernote: Autolinking to Pre-Existing Notes
// FOR THE FREE TEXTEDIT APP. // This script searches for matches in the current EN note to pre-existing Wiki notes and links to them. It thus mimics the autolinking functionality of personal wikis, such as Voodoopad. To use, you simply either type up a note or go to an existing note and run the script. The script functions by [1] getting the te…
tell application "Evernote"
try
set Evernote_Selection to selection
if Evernote_Selection = {} then
display dialog "Please select the note to Wikify"
end if
set noteName to (title of item 1 of Evernote_Selection)
set notebookName to (name of notebook of item 1 of Evernote_Selection)
end try
@fractaledmind
fractaledmind / Wikify Evernote: Autolinking to New Notes (for TextEdit)
Last active December 21, 2015 05:39 — forked from fractaledmind/Wikify Evernote: Autolinking to New Notes
// FOR THE FREE TEXTEDIT APP // This script take the selected note and makes it an Index Page for Wiki-Style sub-pages created in a seperate Notebook that is entitled the same as your Note. It uses WikiWords and [[bracketed]] words as the base for the newly created notes. To use, you simply type up a note and put in WikiWords or a term in [[doub…
tell application "Evernote"
try
set Evernote_Selection to selection
if Evernote_Selection = {} then
display dialog "Please select the note to Wikify"
end if
set noteName to (title of item 1 of Evernote_Selection)
set notebookName to (name of notebook of item 1 of Evernote_Selection)
end try
@fractaledmind
fractaledmind / Accept, Reject, Alter CriticMarkup Doc (VERSION 2.0)
Last active December 21, 2015 16:59 — forked from fractaledmind/Accept, Reject, Alter CriticMarkup Doc
I rewrote the entire script from the ground up. Changes: --Script moves sentence by sentence and alters text each time, so that Contextual views become less and less cluttered. --Added Contextual View to see the whole paragraph containing Markup in question. This script takes as input a text with CriticMarkup in it and allows the user to either …
(* ACCEPT/REJECT CRITICMARKUP CHANGES
--Stephen Margheim
--23 July 2013
--open source
--VERSION 2.0
I rewrote the entire script from the ground up.
Changes:
--Script moves sentence by sentence and alters text each time, so that Contextual views become less and less cluttered.
@fractaledmind
fractaledmind / Wikify Evernote: Create New EN Notes and Embed links in Text
Created August 30, 2013 17:22
This script is application agnostic. It works from the clipboard and returns text to the clipboard. It will take text, extract any words or phrases in [[double brackets]] and make new Evernote notes with those terms as titles. The script assumes you have put MMD meta-data at the beginning of the text in this format: # Note Title = Notebook @ tag…
@fractaledmind
fractaledmind / Create Notebook Index Note With Hyperlinks to All Notes in that Notebook
Created September 2, 2013 05:14
This script creates a new Note in a selected Notebook that contains hyperlinks to all of the other notes in that notebook. Thus, it create a Notebook Index note for a chosen Notebook.