cebe\markdown\inline\LinkTrait::replaceEscape PHP Method

replaceEscape() protected method

Remove backslash from escaped characters
protected replaceEscape ( $text ) : string
$text
return string
    protected function replaceEscape($text)
    {
        $strtr = [];
        foreach ($this->escapeCharacters as $char) {
            $strtr["\\{$char}"] = $char;
        }
        return strtr($text, $strtr);
    }