Skip to content

Commit 3c2f51d

Browse files
fix(projects.csv): use handle for name and include title separately
1 parent 0db3c46 commit 3c2f51d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

site-root/projects.csv.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
'data' => array_map(function($Project) {
66
preg_match('/^\s*[^*#]\s*\w.*/m', $Project->README, $matches);
77
return array(
8-
'name' => $Project->Title
8+
'name' => $Project->Handle
9+
,'title' => $Project->Title
910
,'description' => trim($matches[0])
1011
,'link_url' => $Project->UsersUrl
1112
,'code_url' => $Project->DevelopersUrl

0 commit comments

Comments
 (0)