]> skyeroc.xyz Git - flatmark/commitdiff
change comment
authorelektrischerwalfisch <mail@elektrischerwalfisch.de>
Fri, 4 Apr 2025 08:53:27 +0000 (10:53 +0200)
committerelektrischerwalfisch <mail@elektrischerwalfisch.de>
Fri, 4 Apr 2025 08:53:27 +0000 (10:53 +0200)
theme/shortcodes.php

index a7cd73425f6af18c3ca216996655e5ba8e8df573..9bc5d7190914dffa80a3a3513067c48b6687f8ff 100644 (file)
@@ -19,7 +19,7 @@
             return date("Y"); // Return current year
         }, $markdown);
 
-    // Process columns shortcode with optional classes
+    // Shortcode: columns with optional classes
         $pattern = '/\{columns(.*?)\}(.*?)\{\/columns\}/s';
         $markdown = preg_replace_callback($pattern, function ($matches) use ($Parsedown) {
             // Capture the class (if any) directly after {columns}
@@ -59,7 +59,6 @@
             return '<div class="img-rounded">' . $imgRounded . '</div>';
         }, $markdown);
 
-
         return $markdown;
     }