Ferramenta on-line de formatação HTML



SobreFerramenta on-line de formatação HTML:

Esta ferramenta de formatação HTML on-line pode ajudá-lo a formatar arquivos HTML confusos em arquivos HTML legíveis.

Essa ferramenta pode forçar a formatação de arquivos HTML incorretos, mesmo se a entrada não estiver de acordo com a sintaxe oficial do HTML.

comic html beautifier

Mais links para HTML (Hypertext Markup Language):

Padrão W3 HTML 5.2: https://www.w3.org/TR/html5/

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

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

Formatar HTML em Python (usando o pacote 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