Parsoid
A bidirectional parser between wikitext and HTML5
|
Nowiki treats anything inside it as plain text. More...
Public Member Functions | ||||||||||
getConfig () | ||||||||||
Return information about this extension module.FIXME: Add more expected fields or create a class for this FIXME: The 'name' is expected to be the same as the name defined at the top level of extension.json.
| ||||||||||
sourceToDom (ParsoidExtensionAPI $extApi, string $txt, array $extArgs) | ||||||||||
Convert an extension tag's content to "prepared and loaded" DOM.
| ||||||||||
domToWikitext (ParsoidExtensionAPI $extApi, Element $node, bool $wrapperUnmodified) | ||||||||||
Serialize a DOM node created by this extension to wikitext.
| ||||||||||
Public Member Functions inherited from Wikimedia\Parsoid\Ext\ExtensionTagHandler | ||||||||||
processAttributeEmbeddedHTML (ParsoidExtensionAPI $extApi, Element $elt, Closure $proc) | ||||||||||
Extensions might embed HTML in attributes in their own custom representation (whether in data-mw or elsewhere). | ||||||||||
lintHandler (ParsoidExtensionAPI $extApi, Element $rootNode, callable $defaultHandler) | ||||||||||
Lint handler for this extension. | ||||||||||
diffHandler (ParsoidExtensionAPI $extApi, callable $domDiff, Element $origNode, Element $editedNode) | ||||||||||
XXX: Experimental. | ||||||||||
Nowiki treats anything inside it as plain text.
Wikimedia\Parsoid\Ext\Nowiki\Nowiki::domToWikitext | ( | ParsoidExtensionAPI | $extApi, |
Element | $node, | ||
bool | $wrapperUnmodified ) |
Serialize a DOM node created by this extension to wikitext.
ParsoidExtensionAPI | $extApi | |
Element | $node | A node in a "prepared and loaded" document. |
bool | $wrapperUnmodified |
Reimplemented from Wikimedia\Parsoid\Ext\ExtensionTagHandler.
Wikimedia\Parsoid\Ext\Nowiki\Nowiki::getConfig | ( | ) |
Return information about this extension module.FIXME: Add more expected fields or create a class for this FIXME: The 'name' is expected to be the same as the name defined at the top level of extension.json.
Implements Wikimedia\Parsoid\Ext\ExtensionModule.
Wikimedia\Parsoid\Ext\Nowiki\Nowiki::sourceToDom | ( | ParsoidExtensionAPI | $extApi, |
string | $txt, | ||
array | $extArgs ) |
Convert an extension tag's content to "prepared and loaded" DOM.
ParsoidExtensionAPI | $extApi | |
string | $src | Extension tag content |
array | $extArgs | Extension tag arguments The extension tag arguments should be treated as opaque objects and any necessary inspection should be handled through the API. |
DocumentFragment
if returning some parsed content false
to fallback to the default handler for the content null
to drop the instance completelyReimplemented from Wikimedia\Parsoid\Ext\ExtensionTagHandler.