protected function inlineUrl($Excerpt)
 {
     if ($this->urlsLinked !== true or !isset($Excerpt['text'][2]) or $Excerpt['text'][2] !== '/') {
         return;
     }
     $link = parent::inlineUrl($Excerpt);
     $link['element']['attributes']['target'] = "_blank";
     return $link;
 }