Add map entry
Shared by Manoverda
Add a new map entry
Script
var text = editor.getSelectedText();
if("" == text)
{
ui.input('Address', null, 'Enter the Address', function(value) {
if (value) {
insert_link(value);
}
});
}
else
{
insert_link(text);
}
function insert_link(text) {
var map_link = '[' + text + '](http://maps.apple.com/?address=' + text + ')';
editor.replaceSelection(map_link);
}