reference labels should be case insensitive

This commit is contained in:
Emanuil Rusev 2014-02-05 14:18:05 +02:00
parent ba7f377290
commit ebfdace4c6
1 changed files with 1 additions and 0 deletions

View File

@ -433,6 +433,7 @@ class Parsedown
$reference = array();
$label = substr($outdented_line, 1, $position - 1);
$label = strtolower($label);
$substring = substr($outdented_line, $position + 2);
$substring = trim($substring);