PHP Interface League\CommonMark\Extension\ExtensionInterface

Afficher le fichier Open project: colinodell/commonmark-php Interface Usage Examples

Méthodes publiques

Méthode Description
getBlockParsers ( ) : League\CommonMark\Block\Parser\BlockParserInterface[] Returns a list of block parsers to add to the existing list
getBlockRenderers ( ) : League\CommonMark\Block\Renderer\BlockRendererInterface[] Returns a list of block renderers to add to the existing list
getDocumentProcessors ( ) : League\CommonMark\DocumentProcessorInterface[] Returns a list of document processors to add to the existing list
getInlineParsers ( ) : League\CommonMark\Inline\Parser\InlineParserInterface[] Returns a list of inline parsers to add to the existing list
getInlineProcessors ( ) : League\CommonMark\Inline\Processor\InlineProcessorInterface[] Returns a list of inline processors to add to the existing list
getInlineRenderers ( ) : League\CommonMark\Inline\Renderer\InlineRendererInterface[] Returns a list of inline renderers to add to the existing list

Method Details

getBlockParsers() public méthode

Returns a list of block parsers to add to the existing list
public getBlockParsers ( ) : League\CommonMark\Block\Parser\BlockParserInterface[]
Résultat League\CommonMark\Block\Parser\BlockParserInterface[]

getBlockRenderers() public méthode

The list keys are the block class names which the corresponding value (renderer) will handle.
public getBlockRenderers ( ) : League\CommonMark\Block\Renderer\BlockRendererInterface[]
Résultat League\CommonMark\Block\Renderer\BlockRendererInterface[]

getDocumentProcessors() public méthode

Returns a list of document processors to add to the existing list
public getDocumentProcessors ( ) : League\CommonMark\DocumentProcessorInterface[]
Résultat League\CommonMark\DocumentProcessorInterface[]

getInlineParsers() public méthode

Returns a list of inline parsers to add to the existing list
public getInlineParsers ( ) : League\CommonMark\Inline\Parser\InlineParserInterface[]
Résultat League\CommonMark\Inline\Parser\InlineParserInterface[]

getInlineProcessors() public méthode

Returns a list of inline processors to add to the existing list
public getInlineProcessors ( ) : League\CommonMark\Inline\Processor\InlineProcessorInterface[]
Résultat League\CommonMark\Inline\Processor\InlineProcessorInterface[]

getInlineRenderers() public méthode

The list keys are the inline class names which the corresponding value (renderer) will handle.
public getInlineRenderers ( ) : League\CommonMark\Inline\Renderer\InlineRendererInterface[]
Résultat League\CommonMark\Inline\Renderer\InlineRendererInterface[]