Capitalize article title for alphabetic sorting

This commit is contained in:
litemotiv 2025-01-23 12:05:06 +01:00
parent 33d0f6062c
commit dffcd754c3
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ include __DIR__."/../header.php";
{
$article = basename($file, ".md");
$title = preg_match("/title: (.*)/i", file_get_contents($file), $matches) ? $matches[1] : $article;
$title = ucfirst($title);
$category = preg_match("/category: (.*)/i", file_get_contents($file), $matches) ? $matches[1] : 'default';
if (array_key_exists($category, $category_to_articles))