VCOF0114

OmniFocus: Transform Links

These two plug-ins tranform links within the text of the note of the selected project or task:

Scope and Syntax

Language: English (United States 🇺🇸 · Great Britain 🇬🇧 · Australia 🇦🇺 · Canada 🇨🇦) • Scope: OmniFocus

Command phrase variations (words in [brackets] are optional):

Requirements

(OmniFocus 4 TestFlight only)

Video: Transform Links
These two plug-ins tranform links within the text of the note of the selected project or task.

Downloads

Script Code

Here is the script code for the command:

Links to Markdown

Converts styled link objects into markdown link element.

IMPORTANT: Do no run this plug-in if the note currently contains markdown links. Instead, first convert the markdown links to link objects, then run the script.

Links to Markdown


(async () => { try { function createUtterance(textToSpeak){ langCode = Speech.Voice.currentLanguageCode voiceObj = Speech.Voice.withLanguage(langCode) utterance = new Speech.Utterance(textToSpeak) utterance.voice = voiceObj utterance.rate = Speech.Utterance.defaultSpeechRate return utterance } synthesizer = new Speech.Synthesizer() sel = document.windows[0].selection items = sel.databaseObjects.filter( item => (item instanceof Project || item instanceof Task) ) if(items.length === 1){ noteObj = items[0].noteText runRanges = noteObj.ranges(TextComponent.AttributeRuns) changeCount = 0 runRanges.reverse().forEach(range => { runStyle = noteObj.styleForRange(range) linkStr = runStyle.get(Style.Attribute.Link).string if(linkStr.length > 0){ linkTitle = noteObj.textInRange(range).string if(linkTitle === linkStr){linkTitle = "LINK"} mdLinkStr = `[${linkTitle}](${linkStr})` linkObj = new Text(mdLinkStr, runStyle) noteObj.replace(range, linkObj) changeCount += 1 } }) response = (changeCount === 1) ? "One link":`${changeCount} links` if(changeCount === 0){response = "No links"} response = `${response} transformed.` utterance = createUtterance(response) synthesizer.speakUtterance(utterance) } else { throw { name: "Selection Issue", message: "Please select a single project or task." } } } catch(err){ utterance = createUtterance(err.message) synthesizer.speakUtterance(utterance) //new Alert(err.name, err.message).show() } })();

Markdown to Links

Converts the markdown link elements into styled link objects.

Markdown to Links


(async () => { try { function createUtterance(textToSpeak){ langCode = Speech.Voice.currentLanguageCode voiceObj = Speech.Voice.withLanguage(langCode) utterance = new Speech.Utterance(textToSpeak) utterance.voice = voiceObj utterance.rate = Speech.Utterance.defaultSpeechRate return utterance } synthesizer = new Speech.Synthesizer() sel = document.windows[0].selection items = sel.databaseObjects.filter( item => (item instanceof Project || item instanceof Task) ) if(items.length === 1){ item = items[0] noteObj = item.noteText regexMdLinks = /!?\[([^\]]*)\]\(([^\)]+)\)/ strToMatch = regexMdLinks.source findParams = [Text.FindOption.RegularExpression] resultRange = noteObj.range while (resultRange !== null) { rangeToSearch = noteObj.range resultRange = noteObj.find(regexMdLinks.source, findParams, rangeToSearch) if(resultRange){ mdLinkStr = noteObj.textInRange(resultRange).string x = mdLinkStr.indexOf("]") y = mdLinkStr.indexOf("(") mdLinkTitle = mdLinkStr.substr(1, x - 1) mdLinkURLStr = mdLinkStr.substr(y + 1, mdLinkStr.length) mdLinkURLStr = mdLinkURLStr.slice(0, -1) linkURL = URL.fromString(mdLinkURLStr) if (linkURL){ currentStyle = noteObj.styleForRange(resultRange) linkObj = new Text(mdLinkTitle, currentStyle) style = linkObj.styleForRange(linkObj.range) style.set(Style.Attribute.Link, linkURL) noteObj.replace(resultRange, linkObj) } else {console.error("Bad URL:", mdLinkURLStr)} } } response = (changeCount === 1) ? "One item":`${changeCount} items` if(changeCount === 0){response = "No items"} response = `${response} transformed.` utterance = createUtterance(response) synthesizer.speakUtterance(utterance) } else { throw { name: "Selection Issue", message: "Please select a single project or task." } } } catch(err){ utterance = createUtterance(err.message) synthesizer.speakUtterance(utterance) //new Alert(err.name, err.message).show() } })();

 

 

 

LEGAL

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Mention of third-party websites and products is for informational purposes only and constitutes neither an endorsement nor a recommendation. OMNI-AUTOMATION.COM assumes no responsibility with regard to the selection, performance or use of information or products found at third-party websites. OMNI-AUTOMATION.COM provides this only as a convenience to our users. OMNI-AUTOMATION.COM has not tested the information found on these sites and makes no representations regarding its accuracy or reliability. There are risks inherent in the use of any information or products found on the Internet, and OMNI-AUTOMATION.COM assumes no responsibility in this regard. Please understand that a third-party site is independent from OMNI-AUTOMATION.COM and that OMNI-AUTOMATION.COM has no control over the content on that website. Please contact the vendor for additional information.