ja_JP docs: Also forbid wrapping on full-width parens
This commit is contained in:
parent
25a423f164
commit
d309726dd9
2 changed files with 4 additions and 4 deletions
|
|
@ -1294,8 +1294,8 @@ altprint=mod
|
||||||
|
|
||||||
keyboard=yes
|
keyboard=yes
|
||||||
|
|
||||||
キーボードの矢印キーによるマウスポインターの操作が行えるようにします(
|
キーボードの矢印キーによるマウスポインターの操作が行えるようにします
|
||||||
マウスが使えない場合や、マウス操作が難しいユーザー向けの機能です)
|
(マウスが使えない場合や、マウス操作が難しいユーザー向けの機能です)
|
||||||
|
|
||||||
使用方法:
|
使用方法:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
/* See https://en.wikipedia.org/wiki/Line_breaking_rules_in_East_Asian_languages */
|
/* See https://en.wikipedia.org/wiki/Line_breaking_rules_in_East_Asian_languages */
|
||||||
|
|
||||||
/* Closing brackets (ignoring ' " ]) */
|
/* Closing brackets (ignoring ' " ]) */
|
||||||
$forbidden_start = ")}〕〉》」』】〙〗〟⦆»";
|
$forbidden_start = "))}〕〉》」』】〙〗〟⦆»";
|
||||||
|
|
||||||
/* Japanese characters: chiisai kana and special marks */
|
/* Japanese characters: chiisai kana and special marks */
|
||||||
$forbidden_start .= "ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻";
|
$forbidden_start .= "ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻";
|
||||||
|
|
@ -33,7 +33,7 @@ $forbidden_start .= "・、:;,";
|
||||||
$forbidden_start .= "。\.";
|
$forbidden_start .= "。\.";
|
||||||
|
|
||||||
/* Opening brackets (ignoring ' " [) */
|
/* Opening brackets (ignoring ' " [) */
|
||||||
$forbidden_end = "({〔〈《「『【〘〖〝⦅«";
|
$forbidden_end = "(({〔〈《「『【〘〖〝⦅«";
|
||||||
|
|
||||||
|
|
||||||
/* FIXME: Would be better to use DOMDocument() and modify the
|
/* FIXME: Would be better to use DOMDocument() and modify the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue