options->tag ?? 'p'; $args = $this->getDefaultAttributes(); $output = Html::$tag( $args, $this->getContent() ); if ( false !== $a = $this->getLinkTag() ) { return $a->nest( $output ) . "\n"; } return $output . "\n"; } /** * Retrieves the content of element * * @return string */ protected function getContent(){ $content = $this->maybeReplaceDataSheetTags( $this->options->content ); return str_replace("\n", "
", $content); } }