[Scummvm-git-logs] scummvm-web master -> 18ee3ada4fc7855424fd7a7478ff4ce5ee3df24f

lotharsm mail at serra.me
Mon Oct 18 17:47:28 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .

Summary:
18ee3ada4f WEB: Changing headers to use Markdown headers instead of bold


Commit: 18ee3ada4fc7855424fd7a7478ff4ce5ee3df24f
    https://github.com/scummvm/scummvm-web/commit/18ee3ada4fc7855424fd7a7478ff4ce5ee3df24f
Author: Thunderforge (wjherrmann at gmail.com)
Date: 2021-10-18T19:47:26+02:00

Commit Message:
WEB: Changing headers to use Markdown headers instead of bold

Changed paths:
    include/OrmObjects/Compatibility.php


diff --git a/include/OrmObjects/Compatibility.php b/include/OrmObjects/Compatibility.php
index 02502e12..aa78286f 100644
--- a/include/OrmObjects/Compatibility.php
+++ b/include/OrmObjects/Compatibility.php
@@ -29,21 +29,21 @@ class Compatibility extends BaseCompatibility
 
     public function getNotes()
     {
-        $notes = "**Support Level:**\n\n";
+        $notes = "### Support Level\n\n";
         $notes .= "%{$this->getSupport()}%\n\n";
 
         if ($stable = $this->getStablePlatforms()) {
-            $notes .= "**Supported Platforms:**\n";
+            $notes .= "### Supported Platforms \n";
             $notes .= "{$this->processPlatforms($stable)}\n";
         }
 
         if ($unstable = $this->getUnstablePlatforms()) {
-            $notes .= "**Unsupported Platforms:**\n";
+            $notes .= "### Unsupported Platforms\n";
             $notes .= "{$this->processPlatforms($unstable)}\n";
         }
 
         if ($this->notes) {
-            $notes .= "**Additional Notes:**\n";
+            $notes .= "### Additional Notes\n";
             $notes .= str_replace("- ", "\n- ", parent::getNotes()) . "\n";
         }
 
@@ -65,7 +65,7 @@ class Compatibility extends BaseCompatibility
           }
         }
         if ($links) {
-            $notes .= "\n\n**Links:**\n";
+            $notes .= "\n\n### Links\n";
             $notes .= join("\n", $links);
         }
 




More information about the Scummvm-git-logs mailing list