Welcome to my Website!
    This is a paragraph! Here's how you make a link: Neocities.
    Here's how you can make bold and italic text.
    Here's how you can add an image:
     
    Here's how to make a list:
    
      - First thing
- Second thing
- Third thing
text_input = input("Enter the text to be ponc-ified:")
      #example: Thainic mé anseo ach cha rabh mé ag iarraidh a leithéid a fheiceáil
      text = text_input
      
      text = text.replace("Bh", "Ḃ")
      text = text.replace("bh", "ḃ")
      
      text = text.replace("Ch", "Ċ")
      text = text.replace("ch", "ċ")
      
      text = text.replace("Dh", "Ḋ")
      text = text.replace("dh", "ḋ")
      
      text = text.replace("Fh", "Ḟ")
      text = text.replace("fh", "ḟ")
      
      text = text.replace("Gh", "Ġ")
      text = text.replace("gh", "ġ")
      
      text = text.replace("Mh", "Ṁ")
      text = text.replace("mh", "ṁ")
      
      text = text.replace("Ph", "Ṗ")
      text = text.replace("ph", "ṗ")
      
      text = text.replace("Sh", "Ṡ")
      text = text.replace("sh", "ṡ")
      
      text = text.replace("Th", "Ṫ")
      text = text.replace("th", "ṫ")
      
      print(text)To learn more HTML/CSS, check out these tutorials!