mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
14 lines
533 B
JavaScript
14 lines
533 B
JavaScript
/*
|
|
* List of Unicode code that are flagged as separator.
|
|
*
|
|
* Contains Unicode code of:
|
|
* - Zs = Separator, space
|
|
* - Zl = Separator, line
|
|
* - Zp = Separator, paragraph
|
|
*
|
|
* This list has been computed from http://unicode.org/Public/UNIDATA/UnicodeData.txt
|
|
* curl -s http://unicode.org/Public/UNIDATA/UnicodeData.txt | grep -E ';Zs;|;Zl;|;Zp;' | cut -d \; -f 1 | xargs -I{} printf '%d, ' 0x{}
|
|
*
|
|
*/
|
|
exports.Z = [32, 160, 5760, 8192, 8193, 8194, 8195, 8196, 8197, 8198, 8199, 8200, 8201, 8202, 8232, 8233, 8239, 8287, 12288];
|