kartik\markdown\Markdown::customProcess PHP 메소드

customProcess() 공개 정적인 메소드

Custom conversion of patterns
public static customProcess ( string $content, array $config = [] ) : string
$content string
$config array . List of key value pairs to find and replace
리턴 string
    public static function customProcess($content, $config = [])
    {
        if (empty($config)) {
            return $content;
        }
        return strtr($content, $config);
    }