$descriptorBuilder
$descriptorBuilder : \phpDocumentor\Descriptor\ProjectDescriptorBuilder
XSLT filters that can be used inside a template.
$descriptorBuilder : \phpDocumentor\Descriptor\ProjectDescriptorBuilder
$routers : \phpDocumentor\Transformer\Router\Queue
markdown(string $text) : string
Markdown filter.
Example usage inside template would be:
<div class="long_description">
<xsl:value-of
select="php:function('phpDocumentor\Plugin\Core\Xslt\Extension::markdown',
string(docblock/long-description))"
disable-output-escaping="yes" />
</div>
string | $text |
path(string $fqsen) : boolean|string
Returns a relative URL from the webroot if the given FQSEN exists in the project.
Example usage inside template would be (where @link is an attribute called link):
<xsl:value-of select="php:function('phpDocumentor\Plugin\Core\Xslt\Extension::path', string(@link))" />
string | $fqsen |
getDocumentedElement(string $fqsen) : boolean|\phpDocumentor\Descriptor\DescriptorAbstract
Returns a Descriptor Object if the given FQSEN exists in the project.
string | $fqsen |