Wordpress/tests/phpunit/data/formatting/utf-8
Gary Pendergast 1357e7fc2e Add emoji URL support, and Twemoji fallback for displaying slugs in wp-admin, when the browser doesn't natively support emoji.
Props pento, SergeyBiryukov and boonebgorges.

Fixes #31328



git-svn-id: https://develop.svn.wordpress.org/trunk@31734 602fd350-edb4-49c9-b593-d223f7449a82
2015-03-11 22:54:49 +00:00
..
README
entitize.py
entitized.txt
u-urlencode.py
u-urlencoded.txt
urlencode.py
urlencoded.txt
utf-8.txt

README

The Python scripts are for generating test data, because Python's Unicode
support is much, much, much, much better than PHP's.

 * `utf-8/urlencode.py`, `utf-8/u-urlencode.py` and `utf-8/entitize.py` process UTF-8
   into a few different formats (%-encoding, %u-encoding, &#decimal;)
   and are used like normal UNIXy pipes.

   Try:

   `python urlencode.py < utf-8.txt > urlencoded.txt`
   `python u-urlencode.py < utf-8.txt > u-urlencoded.txt`
   `python entitize.py < utf-8.txt > entitized.txt`

  * `windows-1252.py` converts Windows-only smart-quotes and things
    into their unicode &#decimal reference; equivalents.