You are here

protected function Markdown::_doHardBreaks_callback in Express 8

* Trigger part hashing for the hard break (callback method) *

Parameters

array $matches: * @return string

File

vendor/michelf/php-markdown/Michelf/Markdown.php, line 645

Class

Markdown
Markdown Parser Class

Namespace

Michelf

Code

protected function _doHardBreaks_callback($matches) {
  return $this
    ->hashPart("<br{$this->empty_element_suffix}\n");
}