jcurbelo / fix-birthday-html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fix-birthday-html

Simple script that fixes small typo (htlm) on my 30th birthday cake 🎂 and produces a readable HTML code.

How to use it

python main.py your_htlm_file

Original

<htlm>
<body>
    <age=30>
    <name=ROBIN>
    <message=Happy
     Birthday Mogo>
</body>
</htlm>

Output

<html>

<body>
    <p>
        <b>age:</b>
        <span>30</span>
    </p>
    <p>
        <b>name:</b>
        <span>ROBIN</span>
    </p>
    <p>
        <b>message:</b>
        <span>Happy Birthday Mogo</span>
    </p>
</body>

</html>

The Cake

Cake

About


Languages

Language:Python 85.1%Language:HTML 14.9%