Added header print to mark the output of this text.

This commit is contained in:
The Wobbler 2025-01-13 16:59:44 +01:00
parent 99e0ff0726
commit 35ebc6676d

View file

@ -3,11 +3,13 @@
from wobbl_tools.text.format import format_string
from wobbl_tools.text import format
print("\n==== wobbl_tools.text.format =====")
formats = list(format.color_ansi.keys())
formats.remove("rs")
formats.remove("reset")
print("\n\nIs this shit looking right?\n")
print("Is this shit looking right?\n")
for format_name in formats:
print(f"{format_name.title().replace("_", " ")} text: {format_string(f"§{format_name}Text")}")