* * Original code based on the followings: * - CommonMark JS reference parser (https://bitly.com/commonmark-js) (c) John MacFarlane * - league/commonmark (https://github.com/thephpleague/commonmark) (c) Colin O'Dell * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline; use League\CommonMark\Inline\Renderer\InlineRendererInterface; use League\CommonMark\ElementRendererInterface; use League\CommonMark\Inline\Element\AbstractInline; use League\CommonMark\Inline\Element\Newline; final class NewlineRenderer implements InlineRendererInterface { /** * @param Newline $inline * @param ElementRendererInterface $DWRenderer * * @return HtmlElement|string */ public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) { if (!($inline instanceof Newline)) { throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); } if ($inline->getType() === Newline::HARDBREAK) { return "\\\\ "; } return $DWRenderer->getOption('soft_break', "\n"); } }