summaryrefslogtreecommitdiffstats
path: root/contrib/python/markdown-it-py/markdown_it/common/entities.py
blob: 14d08ec9546995f8eea3e9b83ea896f29ef020cb (plain) (blame)
1
2
3
4
5
"""HTML5 entities map: { name -> characters }."""

import html.entities

entities = {name.rstrip(";"): chars for name, chars in html.entities.html5.items()}