diff --git a/src/music_kraken/objects/formatted_text.py b/src/music_kraken/objects/formatted_text.py
index de51857..20927a3 100644
--- a/src/music_kraken/objects/formatted_text.py
+++ b/src/music_kraken/objects/formatted_text.py
@@ -76,64 +76,3 @@ class FormattedText:
plaintext = property(fget=get_plaintext, fset=set_plaintext)
markdown = property(fget=get_markdown, fset=set_markdown)
html = property(fget=get_html, fset=set_html)
-
-
-if __name__ == "__main__":
- _plaintext = """
-World of Work
-
-1. The right to help out society, and being paied for it
-2. The right to get paied, so you can get along well.
-3. The right for every individual to sell their products to provide for
- themselfes or for others
-4. The right of fair competitions, meaning eg. no monopoles.
-5. The right for a home.
-6. The right to good healthcare
-7. The right of protections against tragedies, be it personal ones, or
- global ones.
-8. The right to be educated in a way that enables you to work.
-
-3 most important ones
-
-1. The right to get paied, so you can get along well.
-2. The right for a home.
-3. The right for a good healthcare.
- """
- _markdown = """
-# World of Work
-
-1. The right to help out society, and being paied for it
-2. **The right to get paied, so you can get along well.**
-3. The right for every individual to sell their products to provide for themselfes or for others
-4. The right of fair competitions, meaning eg. no monopoles.
-5. **The right for a home.**
-6. **The right to good healthcare**
-7. The right of protections against tragedies, be it personal ones, or global ones.
-8. The right to be educated in a way that enables you to work.
-
-## 3 most important ones
-
-1. The right to get paied, so you can get along well.
-2. The right for a home.
-3. The right for a good healthcare.
- """
- _html = """
-Contact: ghostbath@live.com
-
-Although the band originally claimed that they were from Chongqing, China, it has been revealed in a 2015 interview with Noisey that they're an American band based in Minot, North Dakota.
-
-According to the band, "Ghost Bath" refers to "the act of committing suicide by submerging in a body of water."
-
-Compilation appearance(s):
-- "Luminescence" on Jericho Vol.36 - Nyctophobia (2018) []
- """
-
- # notes = FormattedText(html=html)
- # notes = FormattedText(markdown=_markdown)
- notes = FormattedText(plaintext=_plaintext)
-
- # print(notes.get_html())
- # print("-"*30)
- # print(notes.get_markdown())
-
- print(notes.get_markdown())