Bladeren bron

Update typography from upstream

master
David Larlet 2 jaren geleden
bovenliggende
commit
3b01a780d4
1 gewijzigde bestanden met toevoegingen van 11 en 2 verwijderingen
  1. 11
    2
      typography.py

+ 11
- 2
typography.py Bestand weergeven

@@ -1,4 +1,7 @@
from dataclasses import dataclass
import html.entities
import unicodedata


import regex # pour le support de "\p{}"

@@ -8,9 +11,15 @@ class Caractere:
unicode: str
html: str

def __init__(self, name: str):
self.unicode = unicodedata.lookup(name)
codepoint = ord(self.unicode)
html_name = html.entities.codepoint2name.get(codepoint, f"#{codepoint}")
self.html = f"&{html_name};"


ESPACE_INSECABLE = Caractere(unicode="\u00a0", html=" ")
ESPACE_FINE_INSECABLE = Caractere(unicode="\u202f", html=" ")
ESPACE_INSECABLE = Caractere(name="NO-BREAK SPACE")
ESPACE_FINE_INSECABLE = Caractere(name="NARROW NO-BREAK SPACE")


def assemble_regexes(*regexes):

Laden…
Annuleren
Opslaan