"html.entities" --- Definitions of HTML general entities
********************************************************

**ソースコード:** Lib/html/entities.py

======================================================================

このモジュールは 4 つの辞書、"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 HTML entity names to the Unicode code
   points.

html.entities.codepoint2name

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

-[ 脚注 ]-

[1] https://html.spec.whatwg.org/multipage/named-characters.html
    #named-character-references を参照
