├── .coveragerc ├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── index.md └── mkdocs.yml ├── requirements.txt ├── scratch.py ├── setup.py ├── softhyphen ├── __init__.py ├── dicts │ ├── COPYING.GPL │ ├── OLVASSEL_hyph_hu_HU.txt │ ├── README │ ├── README-COMO-HYPH_ES.txt │ ├── README.md │ ├── README_hyph_cs_CZ.txt │ ├── README_hyph_da_DK.txt │ ├── README_hyph_de_CH.txt │ ├── README_hyph_de_DE.txt │ ├── README_hyph_el_GR.txt │ ├── README_hyph_en_CA.txt │ ├── README_hyph_en_GB.txt │ ├── README_hyph_en_US.txt │ ├── README_hyph_es_ES.txt │ ├── README_hyph_fi_FI.txt │ ├── README_hyph_ga_IE.txt │ ├── README_hyph_hu_HU.txt │ ├── README_hyph_ia.txt │ ├── README_hyph_is_IS.txt │ ├── README_hyph_it_IT.txt │ ├── README_hyph_lt_LT.txt │ ├── README_hyph_nl_NL.txt │ ├── README_hyph_pl_PL.txt │ ├── README_hyph_pt_BR.txt │ ├── README_hyph_pt_PT.txt │ ├── README_hyph_ru_RU.txt │ ├── README_hyph_sk_SK.txt │ ├── README_hyph_sl_SI.txt │ ├── README_hyph_sv_SE.txt │ ├── README_hyph_uk_UA.txt │ ├── README_id_ID.txt │ ├── README_sh.txt │ ├── README_sr.txt │ ├── hyph_cs_CZ.dic │ ├── hyph_da_DK.dic │ ├── hyph_de_CH.dic │ ├── hyph_de_DE.dic │ ├── hyph_el_GR.dic │ ├── hyph_en_CA.dic │ ├── hyph_en_GB.dic │ ├── hyph_en_US.dic │ ├── hyph_es_ES.dic │ ├── hyph_fi_FI.dic │ ├── hyph_ga_IE.dic │ ├── hyph_hu_HU.dic │ ├── hyph_hu_HU_nonutf.dic │ ├── hyph_ia.dic │ ├── hyph_id_ID.dic │ ├── hyph_is_IS.dic │ ├── hyph_it_IT.dic │ ├── hyph_lt_LT.dic │ ├── hyph_nl_NL.dic │ ├── hyph_pl_PL.dic │ ├── hyph_pt_BR.dic │ ├── hyph_pt_PT.dic │ ├── hyph_ro_RO.dic │ ├── hyph_ru_RU.dic │ ├── hyph_sh.dic │ ├── hyph_sk_SK.dic │ ├── hyph_sl_SI.dic │ ├── hyph_sr.dic │ ├── hyph_sv_SE.dic │ └── hyph_uk_UA.dic ├── html.py ├── hyphenator.py ├── models.py ├── templatetags │ ├── __init__.py │ └── softhyphen_tags.py └── tests.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: django-softhyphen 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/requirements.txt -------------------------------------------------------------------------------- /scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/scratch.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/setup.py -------------------------------------------------------------------------------- /softhyphen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softhyphen/dicts/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/COPYING.GPL -------------------------------------------------------------------------------- /softhyphen/dicts/OLVASSEL_hyph_hu_HU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/OLVASSEL_hyph_hu_HU.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README -------------------------------------------------------------------------------- /softhyphen/dicts/README-COMO-HYPH_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README-COMO-HYPH_ES.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README.md -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_cs_CZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_cs_CZ.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_da_DK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_da_DK.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_de_CH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_de_CH.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_de_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_de_DE.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_el_GR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_el_GR.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_en_CA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_en_CA.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_en_GB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_en_GB.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_en_US.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_es_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_es_ES.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_fi_FI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_fi_FI.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_ga_IE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_ga_IE.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_hu_HU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_hu_HU.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_ia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_ia.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_is_IS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_is_IS.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_it_IT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_it_IT.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_lt_LT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_lt_LT.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_nl_NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_nl_NL.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_pl_PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_pl_PL.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_pt_BR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_pt_BR.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_pt_PT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_pt_PT.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_ru_RU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_ru_RU.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_sk_SK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_sk_SK.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_sl_SI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_sl_SI.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_sv_SE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_sv_SE.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_hyph_uk_UA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_hyph_uk_UA.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_id_ID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_id_ID.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_sh.txt -------------------------------------------------------------------------------- /softhyphen/dicts/README_sr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/README_sr.txt -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_cs_CZ.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_cs_CZ.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_da_DK.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_da_DK.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_de_CH.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_de_CH.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_de_DE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_de_DE.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_el_GR.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_el_GR.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_en_CA.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_en_CA.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_en_GB.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_en_GB.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_en_US.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_es_ES.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_es_ES.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_fi_FI.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_fi_FI.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_ga_IE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_ga_IE.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_hu_HU.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_hu_HU.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_hu_HU_nonutf.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_hu_HU_nonutf.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_ia.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_ia.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_id_ID.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_id_ID.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_is_IS.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_is_IS.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_it_IT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_it_IT.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_lt_LT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_lt_LT.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_nl_NL.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_nl_NL.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_pl_PL.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_pl_PL.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_pt_BR.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_pt_BR.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_pt_PT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_pt_PT.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_ro_RO.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_ro_RO.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_ru_RU.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_ru_RU.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_sh.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_sh.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_sk_SK.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_sk_SK.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_sl_SI.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_sl_SI.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_sr.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_sr.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_sv_SE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_sv_SE.dic -------------------------------------------------------------------------------- /softhyphen/dicts/hyph_uk_UA.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/dicts/hyph_uk_UA.dic -------------------------------------------------------------------------------- /softhyphen/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/html.py -------------------------------------------------------------------------------- /softhyphen/hyphenator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/hyphenator.py -------------------------------------------------------------------------------- /softhyphen/models.py: -------------------------------------------------------------------------------- 1 | # Nothing to see here 2 | -------------------------------------------------------------------------------- /softhyphen/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /softhyphen/templatetags/softhyphen_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/templatetags/softhyphen_tags.py -------------------------------------------------------------------------------- /softhyphen/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/softhyphen/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datadesk/django-softhyphen/HEAD/tox.ini --------------------------------------------------------------------------------