Fix doc link hashes for github. [ci skip]

This commit is contained in:
John-David Dalton
2013-10-21 21:31:08 -07:00
parent f8bda517c3
commit 4622e9658d
2 changed files with 256 additions and 253 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -246,7 +246,7 @@ class MarkdownGenerator {
$result = ($member ? $member . ($entry->isPlugin() ? 'prototype' : '') : '') . $entry->getCall();
$result = preg_replace('/\(\[|\[\]/', '', $result);
$result = preg_replace('/[\t =|\'"{}.()\]]/', '', $result);
$result = preg_replace('/[[#,]/', '-', $result);
$result = preg_replace('/[\[#,]+/', '-', $result);
return strtolower($result);
}