From 464f5f93293c375dc26ae94a25ddcd2559e236e6 Mon Sep 17 00:00:00 2001 From: horodev Date: Wed, 19 Sep 2018 17:36:40 +0200 Subject: [PATCH] removed min function as it is redundant in the context --- Parsedown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parsedown.php b/Parsedown.php index 9008a89..ef4997b 100644 --- a/Parsedown.php +++ b/Parsedown.php @@ -541,7 +541,7 @@ class Parsedown $Block = array( 'element' => array( - 'name' => 'h' . min(6, $level), + 'name' => 'h' . $level, 'handler' => array( 'function' => 'lineElements', 'argument' => $text,