Outil en ligne de formatage HTML



À propos deOutil en ligne de formatage HTML:

Cet outil de formatage HTML en ligne peut vous aider à formater des fichiers HTML prêtant à confusion en fichiers HTML lisibles.

Cet outil peut forcer le formatage des fichiers HTML incorrects même si l'entrée n'est pas conforme à la syntaxe HTML officielle.

comic html beautifier

Plus de liens vers HTML (Hypertext Markup Language):

W3 HTML 5.2 standard: https://www.w3.org/TR/html5/

RFC 7992 (HTML): https://tools.ietf.org/html/rfc7992

HTML en Python (BeautifulSoup): https://www.crummy.com/software/BeautifulSoup/

Formater le HTML en Python (en utilisant le paquet BeautifulSoup):

def html_beautify(input_str):
    input_str = BeautifulSoup(input_str, 'html.parser').prettify()
    result = ''
    indent_str = '    '
    for line in input_str.split('\n'):
        lstrip_line = line.lstrip(' ')
        indent_len = len(line) - len(lstrip_line)
        formatted_line = indent_len * indent_str + lstrip_line
        result = result + formatted_line + '\n'
    return result