html.entities– HTML通用实体定义

源代码 Lib / html / entities.py


这个模块定义了四个词典,html5,name2codepoint, codepoint2nameentitydefs.

html.entities.html5

HTML5命名字符引用[1]映射到等效Unicode字符的字典,例如html5["gt;"] == ">"。注意名称中包含尾随分号(例如"gt;"),但是即使没有这些微米,一些名称也被标准接受:在这种情况下,名称与没有";"。参见html.unescape().

新版本3.3.

html.entities.entitydefs

字典映射XHTML 1.0实体定义到它们的替换文本inISO Latin-1.

html.entities.name2codepoint

将HTML实体名称映射到Unicode代码点的字典

html.entities.codepoint2name

将Unicode代码点映射到HTML实体名称的字典.

Footnotes

[1] 参见https://www.w3.org/TR/html5/syntax.html#named-character-references

评论被关闭。