function isShortURL($src){ if (substr($src,0,15) == 'https://goo.gl/' ) { // added for markdown image link return true; } return false; }