Herramienta de formato HTML en línea



Acerca deHerramienta de formato HTML en línea:

Esta herramienta de formato HTML en línea puede ayudarlo a formatear archivos HTML confusos en archivos HTML legibles.

Esta herramienta puede forzar el formato de archivos HTML incorrectos, incluso si la entrada no se ajusta a la sintaxis HTML oficial.

comic html beautifier

Más enlaces a HTML (lenguaje de marcado de hipertexto):

W3 HTML 5.2 estándar: 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/

Formato HTML en Python (usando el paquete 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