First dnf test

This commit is contained in:
Darkone 2025-10-27 00:08:16 -02:00
commit d481a5e669
165 changed files with 41270 additions and 0 deletions

61
doc/.fixes.php Executable file
View file

@ -0,0 +1,61 @@
#!/usr/bin/env php
<?php
function clean(string $file): void
{
if (
strpos($file, '/tmp/') ||
strpos($file, '/dist/')
) {
return;
}
$content = file_get_contents($file);
$from = [];
$to = [];
// Unused spaces and CR
$from[] = '/^[ \t]+$/m';
$to[] = '';
$from[] = '/\n\n\n\n/';
$to[] = "\n\n";
$from[] = '/\n\n\n/';
$to[] = "\n\n";
$from[] = '/\n\n\n\n/';
$to[] = "\n\n";
$from[] = '/\n\n\n/';
$to[] = "\n\n";
$from[] = '/\n }[ \t]*\n[\n \t]*\n}/';
$to[] = "\n }\n}";
$from[] = '/\n }[ \t]*\n[\n \t]*\n }/';
$to[] = "\n }\n }";
// End line blanks
$from[] = '/[ \t]+$/m';
$to[] = '';
// Tabulations => spaces
$from[] = '/\t/';
$to[] = ' ';
$content = preg_replace($from, $to, $content);
file_put_contents($file, trim($content) . "\n");
}
function parse(string $dir): void
{
// Files to blacklist
$blackList = [];
$dirLen = strlen(dirname(__DIR__)) + 1;
foreach (glob($dir . '/*') as $file) {
if (is_dir($file)) {
parse($file);
} elseif (preg_match('/^.*\.md.?$/', $file) && !in_array(substr($file, $dirLen), $blackList, true)) {
clean($file);
}
}
}
parse(__DIR__ . '/src/content/docs');