Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/wikimedia/parsoid/src/Html2Wt/DOMHandlers/DDHandler.php
Ðазад
<?php declare( strict_types = 1 ); namespace Wikimedia\Parsoid\Html2Wt\DOMHandlers; use Wikimedia\Parsoid\DOM\Element; use Wikimedia\Parsoid\DOM\Node; use Wikimedia\Parsoid\Html2Wt\DiffUtils; use Wikimedia\Parsoid\Html2Wt\SerializerState; use Wikimedia\Parsoid\Utils\DiffDOMUtils; use Wikimedia\Parsoid\Utils\DOMUtils; use Wikimedia\Parsoid\Utils\WTUtils; class DDHandler extends DOMHandler { /** @var ?string Syntax */ private $stx; public function __construct( ?string $stx = null ) { parent::__construct( $stx !== 'row' ); $this->stx = $stx; } /** @inheritDoc */ public function handle( Element $node, SerializerState $state, bool $wrapperUnmodified = false ): ?Node { $firstChildElement = DiffDOMUtils::firstNonSepChild( $node ); $chunk = ( $this->stx === 'row' ) ? ':' : $this->getListBullets( $state, $node ); if ( !DOMUtils::isList( $firstChildElement ) || WTUtils::isLiteralHTMLNode( $firstChildElement ) ) { $state->emitChunk( $chunk, $node ); } $liHandler = static function ( $state, $text, $opts ) use ( $node ) { return $state->serializer->wteHandlers->liHandler( $node, $state, $text, $opts ); }; $state->singleLineContext->enforce(); $state->serializeChildren( $node, $liHandler ); // Recover trailing whitespace (only on unmodified innermost <dd> nodes); // Consider "::: foo ". Since WS is only trimmed on the innermost <dd> node, // it makes sense to recover this only for the innermost <dd> node. // [ Given current DSR offsets, without this check, we'll recover one space for // every nested <li> node which makes for lotsa dirty diffs. ] $lastChild = DiffDOMUtils::lastNonSepChild( $node ); if ( $lastChild && !DOMUtils::isList( $lastChild ) && !DiffUtils::hasDiffMarkers( $lastChild ) && !( $lastChild instanceof Element && $lastChild->hasAttribute( 'data-mw-selser-wrapper' ) ) ) { $trailingSpace = $state->recoverTrimmedWhitespace( $node, false ); $state->appendSep( $trailingSpace ?? '' ); } $state->singleLineContext->pop(); return $node->nextSibling; } /** @inheritDoc */ public function before( Element $node, Node $otherNode, SerializerState $state ): array { if ( $this->stx === 'row' ) { return [ 'min' => 0, 'max' => 0 ]; } else { return [ 'min' => 1, 'max' => 2 ]; } } /** @inheritDoc */ public function after( Element $node, Node $otherNode, SerializerState $state ): array { return $this->wtListEOL( $node, $otherNode ); } /** @inheritDoc */ public function firstChild( Node $node, Node $otherNode, SerializerState $state ): array { if ( !DOMUtils::isList( $otherNode ) ) { return [ 'min' => 0, 'max' => 0 ]; } else { return []; } } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка