removed min function as it is redundant in the context

This commit is contained in:
horodev 2018-09-19 17:36:40 +02:00
parent c26a2ee4bf
commit 464f5f9329
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ class Parsedown
$Block = array(
'element' => array(
'name' => 'h' . min(6, $level),
'name' => 'h' . $level,
'handler' => array(
'function' => 'lineElements',
'argument' => $text,