]> git.mxchange.org Git - friendica.git/blobdiff - library/php-markdown/Readme.php
Added a whitespace between comma and t()
[friendica.git] / library / php-markdown / Readme.php
index d007b119f212686ae7f44f21381a0ea87555e845..89449dea4dc1743a0ca0914aa7959120dfbcd3ef 100644 (file)
@@ -1,18 +1,18 @@
 <?php
 
-# This file passes the content of the Readme.md file in the same directory
-# through the Markdown filter. You can adapt this sample code in any way
-# you like.
+// This file passes the content of the Readme.md file in the same directory
+// through the Markdown filter. You can adapt this sample code in any way
+// you like.
 
-# Install PSR-0-compatible class autoloader
+// Install PSR-0-compatible class autoloader
 spl_autoload_register(function($class){
        require preg_replace('{\\\\|_(?!.*\\\\)}', DIRECTORY_SEPARATOR, ltrim($class, '\\')).'.php';
 });
 
-# Get Markdown class
+// Get Markdown class
 use \Michelf\Markdown;
 
-# Read file and pass content through the Markdown parser
+// Read file and pass content through the Markdown parser
 $text = file_get_contents('Readme.md');
 $html = Markdown::defaultTransform($text);
 
@@ -24,7 +24,7 @@ $html = Markdown::defaultTransform($text);
     </head>
     <body>
                <?php
-                       # Put HTML content in the document
+                       // Put HTML content in the document
                        echo $html;
                ?>
     </body>