getNativeData(); $pst = $wgParser->preSaveTransform( $text, $title, $user, $popts ); return new static( $pst ); } /** * @return string CSS wrapped in a
 tag.
	 */
	protected function getHtml() {
		$html = "";
		$html .= "
\n";
		$html .= htmlspecialchars( $this->getNativeData() );
		$html .= "\n
\n"; return $html; } }