Update buildreadme.php

This commit is contained in:
MatMasIt 2021-08-11 11:46:28 +02:00 committed by GitHub
parent e9cc9c5626
commit 8dff45d8dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,19 +19,22 @@ $poems=$matches[1];
$endB="";
$f=file("README.md");
$writeStuff=true;
$i=1;
foreach($f as $line){
if(trim($line)=="<!-- BEGIN POEMLIST -->"){
$writeStuff=false;
$endB.=$line;
foreach($poems as $p) $endB.="* $i ".$p."\n";
$i=1;
foreach($poems as $p){
$endB.="* ".$i." ".$p."\n";
$i++;
}
}
if($writeStuff) $endB.=$line;
if(trim($line)=="<!-- END POEMLIST -->"){
$endB.=$line;
$writeStuff=true;
}
$i++;
}
file_put_contents("README.md",$endB);