* @since 2.0 */ class Markdown extends \yii\helpers\Markdown { /** * @var BaseRenderer */ public static $renderer; /** * Converts markdown into HTML * * @param string $content * @param TypeDoc $context * @return string */ public static function process($content, $context = null) { $content = trim(parent::process($content, [])); if (!strncmp($content, '

', 3) && substr($content, -4, 4) == '

') { $content = substr($content, 3, -4); } $content = preg_replace_callback('/\[\[([\w\d\\\\\(\):]+)(\|[\w\d ]*)?\]\]/xm', function($matches) use ($context) { $object = $matches[1]; $title = (empty($matches[2]) || $matches[2] == '|') ? null : substr($matches[2], 1); if (($pos = strpos($object, '::')) !== false) { $typeName = substr($object, 0, $pos); $subjectName = substr($object, $pos + 2); // Collection resolves relative types $typeName = (new Collection([$typeName], $context->phpDocContext))->__toString(); $type = static::$renderer->context->getType($typeName); if ($type === null) { return '' . $typeName . '::' . $subjectName . ''; } else { if (($subject = $type->findSubject($subjectName)) !== null) { if ($title === null) { $title = $type->name . '::' . $subject->name; if ($subject instanceof MethodDoc) { $title .= '()'; } } return static::$renderer->subjectLink($subject, $title); } else { return '' . $type->name . '::' . $subjectName . ''; } } } elseif (($subject = $context->findSubject($object)) !== null) { return static::$renderer->subjectLink($subject, $title); } // Collection resolves relative types $object = (new Collection([$object], $context->phpDocContext))->__toString(); if (($type = static::$renderer->context->getType($object)) !== null) { return static::$renderer->typeLink($type, $title); } return '' . $object . ''; }, $content); return $content; } }