1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

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

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,