SDL: build-web-examples.pl: Added a FIXME.

From 3bc2bd790c04071aa65f09e71d41f7aa9ad9e639 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Sun, 22 Sep 2024 10:35:59 -0400
Subject: [PATCH] build-web-examples.pl: Added a FIXME.

---
 build-scripts/build-web-examples.pl | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build-scripts/build-web-examples.pl b/build-scripts/build-web-examples.pl
index c11589e73a398..0053295e9f60b 100755
--- a/build-scripts/build-web-examples.pl
+++ b/build-scripts/build-web-examples.pl
@@ -168,6 +168,8 @@ sub handle_example_dir {
 sub handle_category_dir {
     my $category = shift;
 
+    # !!! FIXME: this needs to generate a preview page for all the examples things in the category.
+
     print("Category $category ...\n");
 
     do_mkdir("$output_dir/$category");
@@ -213,6 +215,7 @@ sub handle_category_dir {
 while (readdir($dh)) {
     next if ($_ eq '.') || ($_ eq '..');  # obviously skip current and parent entries.
     next if not -d "$examples_dir/$_";   # only care about subdirectories.
+    # !!! FIXME: this needs to generate a preview page for all the categories.
     handle_category_dir($_);
 }