Refactor help plugin, and included metadata to all plugins

This commit is contained in:
2026-05-07 02:27:27 -05:00
parent abb4b5e245
commit dba205685b
38 changed files with 935 additions and 827 deletions
+14
View File
@@ -59,3 +59,17 @@ def get_ordinal_suffix(day_of_month):
return "nd"
else:
return "th"
# ---------------------------------------------------------------------------
# Plugin Metadata
# ---------------------------------------------------------------------------
__version__ = "1.0.0"
__author__ = "Funguy Bot"
__description__ = "Show current date and time"
__help__ = """
<details>
<summary><strong>!date</strong> Current date and time</summary>
<p>Displays the day of the week, ordinal date, and AM/PM time.</p>
</details>
"""