parent
40166eb0e5
commit
4dc87365d7
|
@ -1,5 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# Input files:
|
||||
# - https://unicode.org/Public/12.0.0/ucd/ArabicShaping.txt
|
||||
# - https://unicode.org/Public/12.0.0/ucd/UnicodeData.txt
|
||||
# - https://unicode.org/Public/12.0.0/ucd/Blocks.txt
|
||||
|
||||
from __future__ import print_function, division, absolute_import
|
||||
|
||||
import io, os.path, sys
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
# Input file: https://www.unicode.org/Public/emoji/12.0/emoji-data.txt
|
||||
|
||||
from __future__ import print_function, division, absolute_import
|
||||
import sys
|
||||
import os.path
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# Input files:
|
||||
# - https://unicode.org/Public/12.0.0/ucd/IndicSyllabicCategory.txt
|
||||
# - https://unicode.org/Public/12.0.0/ucd/IndicPositionalCategory.txt
|
||||
# - https://unicode.org/Public/12.0.0/ucd/Blocks.txt
|
||||
|
||||
from __future__ import print_function, division, absolute_import
|
||||
|
||||
import io, sys
|
||||
|
|
|
@ -16,6 +16,10 @@ back to BCP 47 tags. Ambiguous OpenType tags (those that correspond to
|
|||
multiple BCP 47 tags) are listed here, except when the alphabetically
|
||||
first BCP 47 tag happens to be the chosen disambiguated tag. In that
|
||||
case, the fallback behavior will choose the right tag anyway.
|
||||
|
||||
Input files:
|
||||
- https://docs.microsoft.com/en-us/typography/opentype/spec/languagetags
|
||||
- https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# Input file: http://unicode.org/Public/UCD/latest/ucdxml/ucd.nounihan.grouped.zip
|
||||
|
||||
from __future__ import print_function, division, absolute_import
|
||||
|
||||
import io, os.path, sys, re
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
#!/usr/bin/env python
|
||||
# flake8: noqa
|
||||
|
||||
# Input files:
|
||||
# - https://unicode.org/Public/12.0.0/ucd/IndicSyllabicCategory.txt
|
||||
# - https://unicode.org/Public/12.0.0/ucd/IndicPositionalCategory.txt
|
||||
# - https://unicode.org/Public/12.0.0/ucd/UnicodeData.txt
|
||||
# - https://unicode.org/Public/12.0.0/ucd/Blocks.txt
|
||||
|
||||
from __future__ import print_function, division, absolute_import
|
||||
|
||||
import io
|
||||
|
|
|
@ -6,6 +6,8 @@ It creates ``_hb_preprocess_text_vowel_constraints``, which inserts dotted
|
|||
circles into sequences prohibited by the USE script development spec.
|
||||
This function should be used as the ``preprocess_text`` of an
|
||||
``hb_ot_complex_shaper_t``.
|
||||
|
||||
Input file: https://unicode.org/Public/12.0.0/ucd/Scripts.txt
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||
|
|
Loading…
Reference in New Issue