html.entities
— HTML 一般实体的定义¶
该模块定义了四个词典, html5
、 name2codepoint
、 codepoint2name
、以及 entitydefs
。
- html.entities.html5¶
将 HTML5 命名字符引用 1 映射到等效的 Unicode 字符的字典,例如
html5['gt;'] == '>'
。 请注意,尾随的分号包含在名称中(例如'gt;'
),但是即使没有分号,一些名称也会被标准接受,在这种情况下,名称出现时带有和不带有';'
。另见html.unescape()
。3.3 新版功能.
- html.entities.entitydefs¶
将 XHTML 1.0 实体定义映射到 ISO Latin-1 中的替换文本的字典。
- html.entities.name2codepoint¶
A dictionary that maps HTML4 entity names to the Unicode code points.
- html.entities.codepoint2name¶
A dictionary that maps Unicode code points to HTML4 entity names.
备注