help page update

This commit is contained in:
2017-08-05 18:20:13 +02:00
parent 110f461cf5
commit b48bb12067
6 changed files with 87 additions and 37 deletions
+5
View File
@@ -13,6 +13,11 @@ if (file_exists($_pf)) {
$f = file_get_contents($_pf);
$reps = DEBUG ? require(__DIR__ . '/_debug_replacements.php') : [];
$str = str_replace(array_keys($reps), array_values($reps), $f);
// special symbols
$str = str_replace('\,', ' ', $str);
$str = preg_replace('/(?<=\w)~(?=\w)/', '&nbsp;', $str);
include_str($str);
} else {
echo "404";