html.entities — Definições de entidades gerais de HTML

Código-fonte: Lib/html/entities.py


Esse módulo define quatro dicionários, html5, name2codepoint, codepoint2name e entitydefs.

html.entities.html5

Um dicionário que mapeia referências de caracteres nomeados em HTML5 [1] para os caracteres Unicode equivalentes, por exemplo, html5['gt;'] == '>'. Note que o caractere de ponto e vírgula final está incluído no nome (por exemplo, 'gt;'), entretanto alguns dos nomes são aceitos pelo padrão mesmo sem o ponto e vírgula: neste caso o nome está presente com e sem o ';'. Veja também html.unescape().

Novo na versão 3.3.

html.entities.entitydefs

Um dicionário que mapeia as definições de entidade XHTML 1.0 para seu texto substituto em ISO Latin-1.

html.entities.name2codepoint

A dictionary that maps HTML entity names to the Unicode code points.

html.entities.codepoint2name

A dictionary that maps Unicode code points to HTML entity names.

Notas de rodapé