Merge pull request #668 from itshoro/block-heading-min

remove redundant header level cap
This commit is contained in:
Aidan Woods 2018-09-19 21:28:02 +01:00 committed by GitHub
commit 1829106e60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,