Files

6 lines
157 B
Python
Raw Permalink Normal View History

2026-02-12 02:28:23 +02:00
"""HTML5 entities map: { name -> characters }."""
import html.entities
entities = {name.rstrip(";"): chars for name, chars in html.entities.html5.items()}