當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Parsedown::inlineLink方法代碼示例

本文整理匯總了PHP中Parsedown::inlineLink方法的典型用法代碼示例。如果您正苦於以下問題:PHP Parsedown::inlineLink方法的具體用法?PHP Parsedown::inlineLink怎麽用?PHP Parsedown::inlineLink使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Parsedown的用法示例。


在下文中一共展示了Parsedown::inlineLink方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: inlineImage

 protected function inlineImage($Excerpt)
 {
     if (!isset($Excerpt['text'][1]) or $Excerpt['text'][1] !== '[') {
         return;
     }
     $link = parent::inlineLink(['text' => substr($Excerpt['text'], 1), 'context' => substr($Excerpt['text'], 1)]);
     $link['extent'] += 1;
     return $link;
 }
開發者ID:simon-begin,項目名稱:parsedown-noImage,代碼行數:9,代碼來源:ParsedownNoImage.php

示例2: inlineLink

 protected function inlineLink($Excerpt)
 {
     $res = parent::inlineLink($Excerpt);
     $href = $res['element']['attributes']['href'];
     if (isset($href)) {
         if (preg_match('/^javascript\\:/i', $href)) {
             $res['element']['attributes']['href'] = NULL;
         }
     }
     return $res;
 }
開發者ID:bgpat,項目名稱:intern2015w,代碼行數:11,代碼來源:Markdown.php

示例3: inlineLink

 protected function inlineLink($Excerpt)
 {
     $Link = parent::inlineLink($Excerpt);
     $remainder = substr($Excerpt['text'], $Link['extent']);
     if (preg_match('/^[ ]*{(' . $this->regexAttribute . '+)}/', $remainder, $matches)) {
         $Link['element']['attributes'] += $this->parseAttributeData($matches[1]);
         $Link['extent'] += strlen($matches[0]);
     }
     return $Link;
 }
開發者ID:LobbyOS,項目名稱:server,代碼行數:10,代碼來源:Parsedown.php

示例4: inlineLink

 /**
  * add target blank for external links
  **/
 protected function inlineLink($Excerpt)
 {
     $Excerpt = parent::inlineLink($Excerpt);
     $Excerpt = self::addLinkTargetBlank($Excerpt);
     return $Excerpt;
 }
開發者ID:christiancable,項目名稱:nexus5ive,代碼行數:9,代碼來源:NxMarkdown.php

示例5: inlineLink

 protected function inlineLink($excerpt)
 {
     $Span = parent::inlineLink($excerpt);
     $remainder = substr($excerpt, $Span['extent']);
     if (preg_match('/^[ ]*{(' . $this->regexAttribute . '+)}/', $remainder, $matches)) {
         $Span['element']['attributes'] += $this->attributeData($matches[1]);
         $Span['extent'] += strlen($matches[0]);
     }
     return $Span;
 }
開發者ID:williampan,項目名稱:w,代碼行數:10,代碼來源:parsedownextra.php

示例6: inlineLink

 /**
  * Add the current base url to all local links.
  *
  *     [filesystem](about.filesystem "Optional title")
  *
  * @param   string  span text
  *
  * @return  string
  */
 protected function inlineLink($Excerpt)
 {
     $Excerpt['text'] = preg_replace('~(?<!!)(\\[.+?\\]\\()(\\/docs\\/\\{\\{version\\}\\}\\/){0,1}(?!\\w++://)(?!#)(\\S*(?:\\s*+".+?")?\\))~', '$1' . static::$baseUrl . '/$3', $Excerpt['text']);
     return parent::inlineLink($Excerpt);
 }
開發者ID:KodiComponents,項目名稱:module-userguide,代碼行數:14,代碼來源:UserguideMarkdown.php


注:本文中的Parsedown::inlineLink方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。