PHP Interface League\CommonMark\Extension\ExtensionInterface

Show file Open project: colinodell/commonmark-php Interface Usage Examples

Public Methods

Method 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 method

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

getBlockRenderers() public method

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

getDocumentProcessors() public method

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

getInlineParsers() public method

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

getInlineProcessors() public method

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

getInlineRenderers() public method

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